移除布局文件中对表单footer属性的观察者
在`index.vue`文件中,删除了用于监听表单footer属性变化的观察者。此改动不会影响页面加载时的初始化数据处理逻辑。v1.0.0
parent
18647b3f4c
commit
e42a05140b
|
|
@ -100,14 +100,6 @@ const export_data_event = () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
//#region 页面初始化数据 ---------------------start
|
//#region 页面初始化数据 ---------------------start
|
||||||
watch(
|
|
||||||
() => form.value.footer,
|
|
||||||
(new_value) => {
|
|
||||||
console.log('layout:', new_value);
|
|
||||||
},
|
|
||||||
{ deep: true }
|
|
||||||
);
|
|
||||||
|
|
||||||
// 页面加载
|
// 页面加载
|
||||||
onBeforeMount(async () => {
|
onBeforeMount(async () => {
|
||||||
await common_init();
|
await common_init();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue