@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.esm.js
CHANGED
|
@@ -42337,7 +42337,7 @@ const hdl = {
|
|
|
42337
42337
|
popup.visible = true;
|
|
42338
42338
|
},
|
|
42339
42339
|
append() {
|
|
42340
|
-
popup.formData.push(
|
|
42340
|
+
popup.formData.push('');
|
|
42341
42341
|
},
|
|
42342
42342
|
delete(index) {
|
|
42343
42343
|
popup.formData.splice(index, 1);
|
|
@@ -42346,7 +42346,7 @@ const hdl = {
|
|
|
42346
42346
|
// 这里不能使用JSON.parse(JSON.stringify()),否则会切断modelValue_box的响应性
|
|
42347
42347
|
modelValue_box.splice(0, modelValue_box.length, ...popup.formData);
|
|
42348
42348
|
// 触发 update:modelValue 事件更新父组件的 v-model 绑定的值
|
|
42349
|
-
emit("update:modelValue",
|
|
42349
|
+
emit("update:modelValue", modelValue_box);
|
|
42350
42350
|
popup.visible = false;
|
|
42351
42351
|
}
|
|
42352
42352
|
};
|