@yoooloo42/joker 1.0.221 → 1.0.223
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.cjs.js +11 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +12 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -23449,6 +23449,13 @@ const formProps_box = props.myProps;
|
|
|
23449
23449
|
const scopeThis_box = props.scopeThis;
|
|
23450
23450
|
const propsItem_box = props.item;
|
|
23451
23451
|
|
|
23452
|
+
vue.watch(()=>formData_box[propsItem_box.fieldName], (newVal, oldVal) => {
|
|
23453
|
+
console.log('测试 000', newVal);
|
|
23454
|
+
});
|
|
23455
|
+
vue.watch(()=>props.myProps[propsItem_box.fieldName], (newVal, oldVal) => {
|
|
23456
|
+
console.log('测试 111', newVal);
|
|
23457
|
+
});
|
|
23458
|
+
|
|
23452
23459
|
const input = vue.reactive({
|
|
23453
23460
|
placeholder: propsItem_box.placeholder || formProps_box.para.placeholder.input,
|
|
23454
23461
|
showPassword: !!propsItem_box.showPassword,
|
|
@@ -24063,7 +24070,10 @@ return (_ctx, _cache) => {
|
|
|
24063
24070
|
vue.createVNode(_component_ly0Upload_avatar, {
|
|
24064
24071
|
modelValue: vue.unref(formData_box)[vue.unref(propsItem_box).fieldName],
|
|
24065
24072
|
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => ((vue.unref(formData_box)[vue.unref(propsItem_box).fieldName]) = $event)),
|
|
24066
|
-
myProps: {
|
|
24073
|
+
myProps: {
|
|
24074
|
+
uploadUrl: upload.uploadUrl_image,
|
|
24075
|
+
avatar: vue.unref(propsItem_box).avatar
|
|
24076
|
+
}
|
|
24067
24077
|
}, null, 8 /* PROPS */, ["modelValue", "myProps"])
|
|
24068
24078
|
]))
|
|
24069
24079
|
: vue.createCommentVNode("v-if", true),
|