1.0.1 • Published 6 years ago

vue-num-input v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

vue-num-input

vue.js component for numeric input

Introduction

vue-num-input is a vue.js component implementing an input for number on your site.

Installation

$ npm install --save vue-num-input

Usage

Vue.component('vue-num-input', require('./components/vuenuminput.vue'));
<vue-num-input
   inputclass="form-control"
   v-model="variable"
   :precision="2"
   :forceprecision="false"
   :step=".25"                  
   :max="100"
   :min="0"
   decimal-separator=","
   thousand-separator=""
   :showclear="true">
</vue-num-input>

License

MIT