component_ryl 1.0.52 → 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
@@ -139,9 +139,6 @@
139
139
  </div>
140
140
  </hand-dialog>
141
141
 
142
- # 这个方法一般用不到,处理特殊情况(如 点击确定按钮后,接口报错,不关闭弹窗时,可以调用这个方法,关掉 loading效果)
143
- handElse()
144
-
145
142
  # 3.分页 -- handPaging
146
143
 
147
144
  <handPaging
@@ -225,12 +222,15 @@
225
222
  # 可调用函数
226
223
  <div v-copy="[这是复制的文本内容,search]">这是可复制的内容,点击复制</div>
227
224
 
228
- v-debounce -- 防抖
225
+ v-debounce -- 按钮防抖
229
226
  # 不带参数
230
227
  <el-button size="small" v-debounce="[reset]">不带参数</el-button>
231
228
  # 带参数
232
229
  <el-button size="small" v-debounce="[reset,{age:1,sex:123}]">带参数</el-button>
233
230
 
231
+ v-debounce_input -- 输入框防抖
232
+ <el-input size="small" v-debounce_input="[reset]" />
233
+
234
234
  # 6.富文本 -- handTinymce
235
235
 
236
236
  <handTinymce
@@ -324,6 +324,7 @@
324
324
  #.
325
325
  #1.0.47: 自定义tab选择(用于特定筛选查询)
326
326
  #1.0.52: 指令优化 新增
327
+ #1.0.53: 修改主题色
327
328
  ```
328
329
 
329
330
  For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).