element-assits 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/lib/index.js +566 -554
- package/lib/style.scss +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -100,11 +100,14 @@ methods: {
|
|
|
100
100
|
{
|
|
101
101
|
label: '名称', // 必须,标签名 String | Function
|
|
102
102
|
prop: 'name', // 必须,属性名 String
|
|
103
|
+
labelTooltip: '名称的tips', // 可选,名称描述tips String | Object
|
|
103
104
|
required: true, // 可选(默认false),是否必填 Boolean
|
|
104
105
|
component: 'el-input', // 可选(默认el-input),所用组件 String | Component
|
|
105
106
|
rules: [], // 可选,校验规则 Array | Function
|
|
106
107
|
bind: {}, // 可选,组件v-bind Object
|
|
107
108
|
on: {}, // 可选,组件v-on Object
|
|
109
|
+
show: false, // 可选(默认true),控制表单项是否显示 Boolean | Function
|
|
110
|
+
enable: false, // 可选(默认true),控制表单项是否启用 Boolean | Function
|
|
108
111
|
span: 12, // 可选(默认12),所占栅格
|
|
109
112
|
pull: 12, // 可选,栅格偏移
|
|
110
113
|
push: 12, // 可选,栅格偏移
|