> ## Documentation Index
> Fetch the complete documentation index at: https://flutterwaveinc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Flutterwave Vue.JS (Vue2) Library

> Get started with integrating flutterwave with our available libraries

The Vue SDK helps you create seamless payment experiences in your Vue(2.X) 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

## Requirements

1. Flutterwave for business V3 [API keys](/authentication)
2. Vue version = 2.x.x

## Installation

Install the SDK

<CodeGroup>
  ```bash npm theme={null}
  npm install flutterwave-vue-v3
  ```

  ```bash yarn theme={null}
  $ yarn  add  flutterwave-vue-v3
  ```
</CodeGroup>

## Initialization

1. Import the Flutterwave Library in the  'main.js' file.

2. 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

```javascript theme={null}
//main.js
import Vue from 'vue'
import App from './App.vue'
import Flutterwave from  'flutterwave-vue-v3'


Vue.use(Flutterwave, { publicKey: 'FLWPUBK_TESTXXXXXXXXXX' } )

new Vue({
  render: h => h(App),
}).$mount('#app')

```

## Usage

1. [Collections](https://github.com/Flutterwave/Vue-v3/wiki/Collections)
2. [Recurring Payments](https://github.com/Flutterwave/Vue-v3/wiki/Recurring-Payments)
3. [Split payments](https://github.com/Flutterwave/Vue-v3/wiki/Split-Payments)

## Debugging Errors

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.

## Support

For additional assistance using this library, please create an issue on the Github repo or contact the developer experience (DX) team via [email](mailto:developers@flutterwavego.com) or on [Slack](https://bit.ly/34Vkzcg).

You can also follow us [@FlutterwaveEng](https://twitter.com/FlutterwaveEng) and let us know what you think 😊.
