1.0.6 • Published 4 years ago

vue-form-lint v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

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时有效
1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago