vsyswin-ui 0.2.53 → 0.2.54
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/lib/vsyswin-ui.common.js +40599 -39946
- package/lib/vsyswin-ui.common.js.map +1 -1
- package/lib/vsyswin-ui.umd.js +40599 -39946
- package/lib/vsyswin-ui.umd.js.map +1 -1
- package/lib/vsyswin-ui.umd.min.js +181 -181
- package/lib/vsyswin-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/search-bar/src/search-bar.vue +6 -0
package/package.json
CHANGED
|
@@ -547,6 +547,9 @@ export default {
|
|
|
547
547
|
if (item.type === 'select') {
|
|
548
548
|
item.value = item.multiple ? [] : null
|
|
549
549
|
}
|
|
550
|
+
if (item.type === 'slot') {
|
|
551
|
+
item.setValue({ name: '', value: '' })
|
|
552
|
+
}
|
|
550
553
|
}
|
|
551
554
|
}
|
|
552
555
|
})
|
|
@@ -576,6 +579,9 @@ export default {
|
|
|
576
579
|
if (item.type === 'select') {
|
|
577
580
|
item.value = item.multiple ? [] : null
|
|
578
581
|
}
|
|
582
|
+
if (item.type === 'slot') {
|
|
583
|
+
item.setValue({ name: '', value: '' })
|
|
584
|
+
}
|
|
579
585
|
}
|
|
580
586
|
}
|
|
581
587
|
})
|