fix(editor): floating-box高度无法改变

This commit is contained in:
roymondchen 2024-04-11 17:23:31 +08:00
parent 3af247febb
commit 872c978b9b

View File

@ -1,4 +1,4 @@
import { computed, inject, ref, watchEffect } from 'vue';
import { computed, inject, ref, watch } from 'vue';
import type { Services } from '@editor/type';
@ -9,10 +9,16 @@ export const useEditorContentHeight = () => {
const editorContentHeight = computed(() => frameworkHeight.value - navMenuHeight.value);
const height = ref(0);
watchEffect(() => {
if (height.value > 0 && height.value === editorContentHeight.value) return;
height.value = editorContentHeight.value;
});
watch(
editorContentHeight,
() => {
if (height.value > 0 && height.value === editorContentHeight.value) return;
height.value = editorContentHeight.value;
},
{
immediate: true,
},
);
return {
height,