refactor(app): 修改首页全屏直播默认状态为关闭

This commit is contained in:
xingyy 2025-01-15 16:57:26 +08:00
parent 8cbb9f3e76
commit f37f283f09

View File

@ -1,6 +1,6 @@
import { createGlobalState } from '@vueuse/core'
export const homeStore = createGlobalState(() => {
const fullLive=ref(true)
const fullLive=ref(false)
return{
fullLive
}