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.
- package/dist/jianghu-ui.css +76 -84
- package/dist/jianghu-ui.js +1 -1
- package/package.json +1 -1
- package/src/components/JhDrawer/JhDrawer.vue +7 -1
- package/src/components/JhDrawerForm/JhDrawerForm.stories.js +161 -0
- package/src/components/JhForm/JhForm.vue +837 -273
- package/src/components/JhFormFields/JhFormFields.vue +9 -2
|
@@ -587,13 +587,20 @@ export default {
|
|
|
587
587
|
|
|
588
588
|
watch: {
|
|
589
589
|
value: {
|
|
590
|
-
handler(
|
|
591
|
-
this.
|
|
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);
|