v-numeric
v0.1.1
Published
[](https://bundlephobia.com/result?p=v-numeric) [](https://npm.im/v-numeric) [.default;
Vue.use(numeric)- Should use input type="text" instead of "number"
- Should use custom 'bind' parameter instead of v-model bind
<template>
<input
type="text"
v-numeric="{ min: 0, max: 100, decimal: 2, bind: 'myData.somedata' }" />
</template>
<script>
...
myData = {
somedata = '';
}
...
</script>