Vue Cleave component based on Cleave.js

Cleave

Cleave.js and Vue-bulma

Installation

$ npm install vue-cleave

Example

    <template>
        <cleave placeholder="Enter your credit card number" :options="{ creditCard: true }"></cleave>
    </template>

    <script>
    import Cleave from 'vue-cleave'

    export default {
        components: {
            Cleave
        }
    }
    </script>