2025-01-15 08:10:28 +00:00
|
|
|
import { createGlobalState } from '@vueuse/core'
|
|
|
|
import {ref} from "vue";
|
|
|
|
export const liveStore = createGlobalState(() => {
|
|
|
|
const quoteStatus = ref(false)
|
2025-01-16 03:23:46 +00:00
|
|
|
const show = ref(false)
|
2025-01-16 03:07:38 +00:00
|
|
|
const show1=ref(false)
|
|
|
|
const playerId=ref('J_prismPlayer')
|
2025-01-15 08:10:28 +00:00
|
|
|
const changeStatus = () => {
|
|
|
|
quoteStatus.value = !quoteStatus.value
|
|
|
|
}
|
|
|
|
return{
|
2025-01-16 03:07:38 +00:00
|
|
|
show1,
|
|
|
|
playerId,
|
2025-01-15 08:10:28 +00:00
|
|
|
show,
|
|
|
|
quoteStatus,
|
|
|
|
changeStatus
|
|
|
|
}
|
|
|
|
})
|