phecda-vue 1.2.8 → 1.2.9
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -439,8 +439,8 @@ function createForm(compSet, form, formItem, options = {}) {
|
|
|
439
439
|
...props.config[property],
|
|
440
440
|
[`${modelKey}`]: props.data[property],
|
|
441
441
|
[`onUpdate:${modelKey}`]: (v) => {
|
|
442
|
-
props.data[property] = v;
|
|
443
442
|
onUpdate?.(property);
|
|
443
|
+
props.data[property] = v;
|
|
444
444
|
}
|
|
445
445
|
}, {
|
|
446
446
|
default: () => generateChildVNode(props.config[props.property])
|
package/dist/index.mjs
CHANGED
|
@@ -380,8 +380,8 @@ function createForm(compSet, form, formItem, options = {}) {
|
|
|
380
380
|
...props.config[property],
|
|
381
381
|
[`${modelKey}`]: props.data[property],
|
|
382
382
|
[`onUpdate:${modelKey}`]: (v) => {
|
|
383
|
-
props.data[property] = v;
|
|
384
383
|
onUpdate?.(property);
|
|
384
|
+
props.data[property] = v;
|
|
385
385
|
}
|
|
386
386
|
}, {
|
|
387
387
|
default: () => generateChildVNode(props.config[props.property])
|