Vue Stripe Elements
Flexible and powerful Vue components for Stripe. It's a glue between Stripe.js and Vue component lifecycle.
- Vue 2 component collection: stable ✅
- Vue 3 version: in development ?
Quickstart
1. Install package:
2. Add Stripe.js library to the page:
<script src="https://js.stripe.com/v3/"></script>
Alternatively, you can load Stripe library dynamically. Just make sure it's ready before your components mount.
3. Use built-in components
Create card
4. Get advanced
Create multiple elements
5. Go wild
You can even create multiple groups, don't ask me why. It's possible.
Styles
No base style included. Main reason: overriding it isn't fun. Style as you wish via element options: see details.
API Reference
StripeElements.vue
Think of it as of individual group of elements. It creates stripe instance and elements object.
props
data
You can access instance
and elements
by adding ref to StripeElements component.
default scoped slot
Elegant solution for props. Really handy because you can make instance
and elements
available to all children without adding extra code.
StripeElement.vue
Universal and type agnostic component. Create any element supported by Stripe.
props
data
options
Element options are reactive. Recommendation: don't use v-model on StripeElement
, instead pass value via options.
events
Following events are emitted on StripeElement
- change
- ready
- focus
- blur
- escape
Helpers
In case you like the manual gearbox. Check stripeElements.js for details.