- 移除 default.vue 中的 fullLive 条件判断- 优化 LiveRoom 页面布局- 更新 home store 中的 fullLive 默认值为 true -调整首页 changeLive 扩展样式 - 删除 specialMessage 组件
7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
import { createGlobalState } from '@vueuse/core'
|
|
export const homeStore = createGlobalState(() => {
|
|
const fullLive=ref(true)
|
|
return{
|
|
fullLive
|
|
}
|
|
}) |