feat: 视频搜索

This commit is contained in:
lanyeeee
2025-08-08 05:16:28 +08:00
parent f137b2b8a6
commit b83d13c7e1
21 changed files with 1188 additions and 4 deletions
+3 -1
View File
@@ -1,10 +1,12 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
import { Config, UserInfo } from './bindings.ts'
import { CurrentNavName } from './AppContent.vue'
export const useStore = defineStore('store', () => {
const config = ref<Config>()
const userInfo = ref<UserInfo>()
const currentNavName = ref<CurrentNavName>('search')
return { config, userInfo }
return { config, userInfo, currentNavName }
})