vue3.4以上版本导致角色抽屉隐藏footer逻辑错误

pull/1164/head
JEECG 2024-03-18 11:02:23 +08:00
parent f8fc40a287
commit 3e01894db5
1 changed files with 3 additions and 1 deletions

View File

@ -59,7 +59,9 @@
instance && emit('register', drawerInstance, instance.uid);
const getMergeProps = computed((): DrawerProps => {
return deepMerge(toRaw(props), unref(propsRef));
// update-begin--author:liaozhiyang---date:20240306---forQQYUN-8389vue3.4footer
return { ...deepMerge(toRaw(props), unref(propsRef)) };
// update-end--author:liaozhiyang---date:20240306---forQQYUN-8389vue3.4footer
});
const getProps = computed((): DrawerProps => {