fix(personalization): 恢复个人空间打开/关闭动画
This commit is contained in:
parent
e3bf67d25d
commit
9c15c6f945
@ -331,7 +331,7 @@
|
||||
/>
|
||||
</div>
|
||||
|
||||
<PersonalizationDrawer v-if="personalizationStore.visible" />
|
||||
<PersonalizationDrawer />
|
||||
<transition name="overlay-fade">
|
||||
<ImagePicker
|
||||
v-if="imagePickerOpen"
|
||||
@ -679,13 +679,11 @@
|
||||
import { defineAsyncComponent } from 'vue';
|
||||
import appOptions from './app';
|
||||
import VideoPicker from './components/overlay/VideoPicker.vue';
|
||||
import { usePersonalizationStore } from './stores/personalization';
|
||||
import { useTutorialStore } from './stores/tutorial';
|
||||
|
||||
const VirtualMonitorSurface = defineAsyncComponent(
|
||||
() => import('./components/chat/VirtualMonitorSurface.vue')
|
||||
);
|
||||
const personalizationStore = usePersonalizationStore();
|
||||
const tutorialStore = useTutorialStore();
|
||||
|
||||
const mobilePanelIcon = new URL('../icons/align-left.svg', import.meta.url).href;
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<transition name="personal-page-fade">
|
||||
<transition name="personal-page-fade" appear>
|
||||
<div
|
||||
class="personal-page-overlay"
|
||||
v-if="visible"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user