yj-kikimore 0.1.2 → 0.1.3
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 +0 -4
- package/package.json +1 -1
- package/src/Select/index.vue +3 -1
package/README.md
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
<h1 align="center">yj-Kikimore</h1>
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img height="28px" src="https://user-images.githubusercontent.com/10731096/95823103-9ce15780-0d5f-11eb-8010-1bd1b5910d4f.png">
|
|
5
|
-
|
|
6
|
-
<img height="28px" src="https://cdn.rawgit.com/ElemeFE/element/dev/element_logo.svg">
|
|
7
|
-
<br>
|
|
8
4
|
几个 Element Plus / Element 组件的封装。
|
|
9
5
|
</p>
|
|
10
6
|
|
package/package.json
CHANGED
package/src/Select/index.vue
CHANGED
|
@@ -191,7 +191,7 @@ export default {
|
|
|
191
191
|
default: undefined,
|
|
192
192
|
}])),
|
|
193
193
|
},
|
|
194
|
-
emits: [model.event, 'update:options', 'update:label'],
|
|
194
|
+
emits: [model.event, 'update:options', 'update:label', 'change'],
|
|
195
195
|
data() {
|
|
196
196
|
return {
|
|
197
197
|
innerValue: this[model.prop],
|
|
@@ -406,6 +406,8 @@ export default {
|
|
|
406
406
|
}
|
|
407
407
|
|
|
408
408
|
this.innerValue = innerValue.filter(v => v !== undefined)
|
|
409
|
+
|
|
410
|
+
this.$emit('change', this.innerValue)
|
|
409
411
|
},
|
|
410
412
|
// 更新全选按钮的勾选状态
|
|
411
413
|
updateSelectAllStatus() {
|