Validating payment details in Vue


If you’ve ever built a payment form on a website, you’ve probably come across things such as credit card input masks and validation/formatting of various fields. The guys over at stripe have made a fantastic library for this known as jQuery.payment.

Although it’s easy enough to manually set up the fields to mask and validate as and when you need them, it’s not exactly convenient. For you folks using Vue, this one’s for you.

This package is built with jQuery, so if that’s a no-no for your project, this package might be a no-go for you. If not, read on!

Introducing vue-stripe-payment - a simple wrapper library for jQuery.payment integration into Vue. This simply plugin registers a v-payment directive to automatically bind to form fields. Simply add the type of mask/format validation you require for the field as the directive arg, and away you go.

For example:

<form>
    <div class="form-group">
        <label>Card number</label>
        <input class="form-control" v-payment:formatCardNumber>
    </div>
    <div class="form-group">
        <label>Card Expiry</label>
        <input class="form-control" v-payment:formatCardExpiry>
    </div>
    <div class="form-group">
        <label>Card CVC</label>
        <input class="form-control" v-payment:formatCardCVC>
    </div>
    <div class="form-group">
        <label>Numeric input</label>
        <input class="form-control" v-payment:restrictNumeric>
    </div>
    <button class="btn btn-primary">Submit</button>
</form>

You can also bind to parent elements of inputs if you do not have direct access to the input element, for example if you’re using a UI library such as vuetify which wraps inputs in a custom wrapper.

And if that isn’t enough, you have full access to the payment plugin via this.$payment in your components so you can programmatically format and validate any data at any time.

If you find this plugin helpful, please star on GitHub and share.

Related Posts

New package - Nuxt Lighthouse Module

Implementing automated Lighthouse audits on each deploy of your Nuxt.js application.

New package - Storybook Directories

A simple module for generating your storybook story structure based on your directory structure.

Gitprefix - Automatically formatting commit messages

Git precommit hook for appending branch and emoji prefixes

Automated Pull Request Checks on Github

Using Probot to create automated checks on Github Pull Requests

Netsells 💙 Vue (+ Vue.js London)

Why we at Netsells love the Vue.js framework and where you can find us later this week

Maximising Productivity with Slack

Staying productive with your favourite workplace chat app

Stop with the unhelpful loading spinners

Give some context to your users with some helpful loading text

Responsive Blocks and Vertical Alignment

How to create responsive cross-browser blocks with vertically aligned content

Development Goals for 2018

New Year Promise.resolve()

Progressively Infiltrating Google

Attending the Google Academy for a course on Progressive Web Apps