vue-form-lint
v1.0.6
Published
A Vue.js project
Downloads
4
Maintainers
Readme
vue-form-lint
v1.0.6
Install
npm i vue-form-lint
import VueFormLint from "../dist/vue-form-lint";
Vue.use(VueFormLint);
Demo
data:{
a:{
b:{
c:10
}
}
}
elemenuUI 组件使用:
<el-input v-model="a.b.c" v-form-lint />
原生input组件使用:
<input v-model="a.b.c" v-form-lint />
默认保留2位小数,即金额的格式 : 22.14 元
配置参数
<input v-model="a.b.c" v-form-lint="options" />
options配置:
type: number | string, 默认 'number'
min: 10, 最大值,type=number时有效
max: 1000, 最小值,type=number时有效
precision: 2, 保留几位小数点,默认2位
length:5,字符串长度,非0正整数,type=string时有效