liveh5-nuxt/app/stores/home/index.js

7 lines
167 B
JavaScript

import { createGlobalState } from '@vueuse/core'
export const homeStore = createGlobalState(() => {
const fullLive=ref(false)
return{
fullLive
}
})