jianghu-ui 1.0.7 → 1.0.8

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.
@@ -587,13 +587,20 @@ export default {
587
587
 
588
588
  watch: {
589
589
  value: {
590
- handler(val) {
591
- this.values = { ...val };
590
+ handler() {
591
+ this.initValues();
592
592
  },
593
593
  immediate: true,
594
594
  deep: true,
595
595
  },
596
596
 
597
+ fields: {
598
+ handler() {
599
+ this.initValues();
600
+ },
601
+ deep: true,
602
+ },
603
+
597
604
  dependencies: {
598
605
  handler(newDeps) {
599
606
  this.setupDependencyWatchers(newDeps);