ZestfulNation / vue-number-input-spinner

A customizable number input spinner component for Vuejs with character validation and min/max values
https://zestfulnation.github.io/vue-number-input-spinner/
41 stars 21 forks source link

What about decimal steps? #18

Open muscle-rhnkyr opened 5 years ago

muscle-rhnkyr commented 5 years ago

Hey there,

my component is

 <NumberInputSpinner
                :min="0"
                :max="10"
                :step="0.5"
                v-model="5.5"
              />

but is does not work as expected. Any tips?