2.1.0 • Published 3 years ago

vue-braintree v2.1.0

Weekly downloads
374
License
-
Repository
-
Last release
3 years ago

Vue Braintree

Build Status Maintainability Test Coverage

Braintree Drop In

  • Works with: Credit Cards, Paypal, Apple Pay, Google Pay, etc.
  • Choose your own language. Available in English, French, Spanish, etc.
  • Fully customizable

Documentation

Complete documentation and examples available at https://francoislevesque.github.io/vue-braintree/.

Quick start

Import the plugin in your Vue Application.

import Vue from 'vue'
import vue-braintree from 'vue-braintree'

Vue.use(vue-braintree)

In order to use the Drop-in UI, you'll first need to get a tokenization key from the Control Panel or generate a client token on your server. This will be your authorization used when creating Drop-in.

<v-braintree 
    authorization="xxxxxxxxxxxxxxxxxxxxxx"
    @success="onSuccess"
    @error="onError"
></v-braintree>
export default {
  methods: {
    onSuccess (payload) {
      let nonce = payload.nonce;
      // Do something great with the nonce...
    },
    onError (error) {
      let message = error.message;
      // Whoops, an error has occured while trying to get the nonce
    }
  }
}
2.1.0

3 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

0.1.0

4 years ago

2.0.0

4 years ago

1.0.2

5 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago