@yoooloo42/joker 1.0.114 → 1.0.116
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 +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -42341,7 +42341,7 @@ const hdl = {
|
|
|
42341
42341
|
popup.visible = true;
|
|
42342
42342
|
},
|
|
42343
42343
|
append() {
|
|
42344
|
-
popup.formData.push(
|
|
42344
|
+
popup.formData.push('');
|
|
42345
42345
|
},
|
|
42346
42346
|
delete(index) {
|
|
42347
42347
|
popup.formData.splice(index, 1);
|
|
@@ -42350,7 +42350,7 @@ const hdl = {
|
|
|
42350
42350
|
// 这里不能使用JSON.parse(JSON.stringify()),否则会切断modelValue_box的响应性
|
|
42351
42351
|
modelValue_box.splice(0, modelValue_box.length, ...popup.formData);
|
|
42352
42352
|
// 触发 update:modelValue 事件更新父组件的 v-model 绑定的值
|
|
42353
|
-
emit("update:modelValue",
|
|
42353
|
+
emit("update:modelValue", modelValue_box);
|
|
42354
42354
|
popup.visible = false;
|
|
42355
42355
|
}
|
|
42356
42356
|
};
|