v-decimal-pro
v1.0.7
Published
专注于输入框数字处理
Readme
v-decimal-pro
输入框限制组件:限制只能输入整数或者小数且支持动态规则
安装
使用 npm 安装:
npm i v-decimal-pro --saveimport decimal from 'v-decimal-pro';
Vue.directive('decimal',decimal)使用
### 使用
```vue
1. 保留两位置小数
<template>
<input v-decimal/>
</template>
2. 0-100,小数2位
<template>
<input v-decimal.range0_100="2" />
</template>
3. 整数3位,小数2位,且≥1
<template>
<input v-decimal.min1="[3,2]" />
</template>
4.动态规则
<template>
<input :v-decimal="{ modifiers: { range0_100: true }, value: 2 }" />
</template>