The all-new Vue SDK helps you create seamless payment experiences in your Vue 3 mobile/web app. By connecting to our modal, you can start collecting payment in no time.
Available features include:
- Collections: Card, Account, Mobile money, Bank Transfers, USSD, Barter, NQR.
- Recurring payments: Tokenization and Subscriptions.
- Split payments
- Flutterwave for business V3 API keys
- Vue version >= 3.0
This new project is not yet on npm (will need the permission of the Flutterwave team).
-
Import the Flutterwave Library in the 'main.js' file.
-
Add the Flutterwave plugin to your app passing in your Flutterwave Public Key (optional)
Note 💡: For a Typescript project sample, please see the project in the example directory of the project repository.
If Public key is not added you will have to pass in the public_key parameter to the provided payment component button and payment function
//main.js
import { createApp } from "vue";
import Flutterwave from "flutterwave-vue-v3";
const app = createApp(App);
app.use(Flutterwave, {
publicKey: "<your public key here>",
});
app.mount("#app");
Majority of the api here works similar to that of the older version.
One major difference is the removal of global function imports (such as this.payWithFlutterWave
) in favour of composables such as useFlutterWave()
. All functions needed are contained in the composable, and can be accessed.
const fw = useFlutterWave();
See the example at src/
for more information
We understand that you may run into some errors while integrating our library. You can read more about our error messages here.
For authorization and validation error responses, double-check your API keys and request. If you get a server error, kindly engage the team for support.
For additional assistance using this library, please create an issue on the Github repo or contact the developer experience (DX) team via email or on Slack.
You can also follow us @FlutterwaveEng and let us know what you think 😊.
We welcome contributions from the community. Please see the community guide for contributions guidelines.
By contributing to this library, you agree that your contributions will be licensed under its MIT license.
Copyright (c) Flutterwave Inc.
This new version was made from the old version at the current repo by Nikechukwu Okoronkwo