pilotkid / vue-credit-card-validation

A dependency-free Vue plugin for formatting and validating credit card form fields.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vue-credit-card-validation

npm vue2

A dependency-free Vue plugin for formatting and validating credit card form fields.

A directive is provided for input masking form fields,

View Demo

Installation

Via npm:

yarn add vue-credit-card-validation
- OR -
npm install vue-credit-card-validation

Using this plugin

Adding vue-credit-card-validation to your application is as simple as any other plugin:

import Vue from 'vue';

import VueCardFormat from 'vue-credit-card-validation';

Vue.use(VueCardFormat);

new Vue({
  el: '#app',
});

The v-cardformat directive is now available to your app. Masks can be accessed as the arg of this directive, for example:

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

View the advanced example to see other functionalities that can be used with this plugin.

For further details, see the stripe/jquery.payment readme.

Warning!

This plugin is not intended for collection credit card data directly. Instead, it is used to format and validate the supplied card information before tokenizing it (for Stripe, etc.) or otherwise storing it securely.

Using (Stripe Elements)[https://stripe.com/docs/stripe-js/elements/quickstart] will offer much of the same functionality with much easier implementation and PCI compliance.

Credits

This plugin was originally a clone of samturrell/vue-stripe-payment but was rewritten to include the methods provided by stripe/jquery-payment.

©️ License

MIT

About

A dependency-free Vue plugin for formatting and validating credit card form fields.

License:MIT License


Languages

Language:JavaScript 65.7%Language:HTML 30.1%Language:CSS 4.2%