diff --git a/src/App.vue b/src/App.vue index c625e910..38adf0b7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,6 +9,10 @@ const chatStore = useChatStore() const { isInitialized } = storeToRefs(chatStore) const route = useRoute() +const tooltip = { + delayDuration: 100, +} + // 应用启动时从数据库加载会话列表 onMounted(async () => { await chatStore.loadSessions() @@ -16,11 +20,11 @@ onMounted(async () => {