移除布局文件中对表单footer属性的观察者

在`index.vue`文件中,删除了用于监听表单footer属性变化的观察者。此改动不会影响页面加载时的初始化数据处理逻辑。
v1.0.0
sws 2024-09-06 11:49:08 +08:00
parent 18647b3f4c
commit e42a05140b
1 changed files with 0 additions and 8 deletions

View File

@ -100,14 +100,6 @@ const export_data_event = () => {
}
};
//#region ---------------------start
watch(
() => form.value.footer,
(new_value) => {
console.log('layout:', new_value);
},
{ deep: true }
);
//
onBeforeMount(async () => {
await common_init();