Numeric input component based on Vue.
$ npm install vue-numeric --save-dev<template> <vue-numeric currency="$" separator="," v-model="price"></vue-numeric> </template> <script> import VueNumeric from 'vue-numeric' export default { name: 'App', components: { VueNumeric }, data () { return { price: '' } } } </script> Vue-Numeric is open-sourced software licensed under the MIT license
