vue-stripe-card-form
v1.0.5
Published
Vue component for taking card details and getting a token from stripe
Downloads
4
Readme
vue-stripe-card-form
Form for collecting credit card details and receiving a token from Stripe
Installation
##npm
npm install --save vue-stripe-card-form
Include the stripe script in the head of your index.html file
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
Use the component by passing though your stripe publishable key.
The tokenReceived
event will fire as soon as the form recieves a token from the Stripe API.
<stripe-payment @tokenReceived="gotToken" :stripe-key="[YOUR_STRIPE_PUBLISHABLE_KEY_GOES_HERE]">
</stripe-payment>
You can get the token in the callback function defined in the tokenReceived
event.
methods:{
gotToken(token){
// Send your token to the server or whatever
}
}