element-assits 0.0.89 → 0.0.91
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 +17 -0
- package/lib/index.js +436 -383
- package/lib/style.css +1 -1
- package/lib/style.scss +144 -111
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -153,6 +153,23 @@ Vue 原型上挂载了 `$asyncLoad` 方法(与asyncLoad相同)
|
|
|
153
153
|
|bodyPadding|内容 padding|String|undefined|
|
|
154
154
|
|bodyMinHeight|内容最小高度|String|undefined|
|
|
155
155
|
|allowDrag|是否允许拖拽|Boolean|true|
|
|
156
|
+
|confirmText|确定按钮文本|String|'确定'|
|
|
157
|
+
|cancelText|取消按钮文本|String|'取消'|
|
|
158
|
+
|
|
159
|
+
### 抽屉 EaDrawer
|
|
160
|
+
继承 el-drawer,允许少量修改布局,简化按钮
|
|
161
|
+
绑定confirm事件,出现确定按钮;绑定cancel事件,出现取消按钮
|
|
162
|
+
#### props
|
|
163
|
+
| 属性名 | 说明 | 类型 | 默认值 |
|
|
164
|
+
|:---|:---|:---|:---|
|
|
165
|
+
|customClass|自定义css类|String|undefined|
|
|
166
|
+
|confirmLoading|确定按钮的加载状态|Boolean|false|
|
|
167
|
+
|width|抽屉宽度|String|'720px'|
|
|
168
|
+
|bodyPadding|内容 padding|String|'20px'|
|
|
169
|
+
|headerHeight|标题高度|String|'70px'|
|
|
170
|
+
|footerHeight|底部高度|String|'70px'|
|
|
171
|
+
|confirmText|确定按钮文本|String|'确定'|
|
|
172
|
+
|cancelText|取消按钮文本|String|'取消'|
|
|
156
173
|
|
|
157
174
|
### 数字输入框 EaNumber
|
|
158
175
|
使样式与 el-input 相似
|