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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vsyswin-ui",
3
- "version": "0.2.53",
3
+ "version": "0.2.54",
4
4
  "main": "lib/vsyswin-ui.umd.min.js",
5
5
  "private": false,
6
6
  "description": "Vue2.x的应用组件库.",
@@ -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
  })