component_ryl 1.0.50 → 1.0.53

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/.babelrc CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "presets": [["env", { "modules": false }], "stage-3"],
3
- "plugins": [
4
- [
5
- "component",
6
- {
7
- "libraryName": "element-ui",
8
- "styleLibraryName": "theme-chalk"
9
- }
10
- ]
11
- ]
3
+ // "plugins": [
4
+ // [
5
+ // "component",
6
+ // {
7
+ // "libraryName": "element-ui",
8
+ // "styleLibraryName": "theme-chalk"
9
+ // }
10
+ // ]
11
+ // ]
12
12
  }
package/README.md CHANGED
@@ -125,7 +125,7 @@
125
125
  # 2.弹出层 -- handDialog
126
126
 
127
127
  <hand-dialog
128
- :visible="isShow" #弹窗名称
128
+ :visible="isShow"
129
129
  title="测试看看1"
130
130
  :width="500"
131
131
  :btnCount="1" #btnCount值: 2(两个按钮 -- 默认) 1 (1个按钮) 0 (无按钮)
@@ -222,12 +222,15 @@
222
222
  # 可调用函数
223
223
  <div v-copy="[这是复制的文本内容,search]">这是可复制的内容,点击复制</div>
224
224
 
225
- v-debounce -- 防抖
225
+ v-debounce -- 按钮防抖
226
226
  # 不带参数
227
227
  <el-button size="small" v-debounce="[reset]">不带参数</el-button>
228
228
  # 带参数
229
229
  <el-button size="small" v-debounce="[reset,{age:1,sex:123}]">带参数</el-button>
230
230
 
231
+ v-debounce_input -- 输入框防抖
232
+ <el-input size="small" v-debounce_input="[reset]" />
233
+
231
234
  # 6.富文本 -- handTinymce
232
235
 
233
236
  <handTinymce
@@ -320,7 +323,8 @@
320
323
  #1.0.42: table调整
321
324
  #.
322
325
  #1.0.47: 自定义tab选择(用于特定筛选查询)
323
- #1.0.50: 指令优化 新增
326
+ #1.0.52: 指令优化 新增
327
+ #1.0.53: 修改主题色
324
328
  ```
325
329
 
326
330
  For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).