Skip to content

Commit 6adc70d

Browse files
committed
fix: watcher
1 parent 149d229 commit 6adc70d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sub-store-front-end",
3-
"version": "2.15.17",
3+
"version": "2.15.18",
44
"private": true,
55
"scripts": {
66
"dev": "vite --host",

src/views/editor/ActionBlock.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ watch(() => list, (newV: ActionModuleProps[]) => {
421421
editNameList.push(generateEditNameItem(element));
422422
});
423423
}
424-
});
424+
}, { deep: true }); // https://cn.vuejs.org/guide/essentials/watchers
425425
426426
watch(inCustomNameEditMode, (newV) => {
427427
emit('updateCustomNameModeFlag', newV);

0 commit comments

Comments
 (0)