- 移除 default.vue 中的 fullLive 条件判断- 优化 LiveRoom 页面布局- 更新 home store 中的 fullLive 默认值为 true -调整首页 changeLive 扩展样式 - 删除 specialMessage 组件
13 lines
324 B
Vue
13 lines
324 B
Vue
<template>
|
|
<main class="flex flex-col min-h-svh">
|
|
<AppHeader class="h-[var(--van-nav-bar-height)]" />
|
|
<div class="flex-1 flex flex-col">
|
|
<slot />
|
|
</div>
|
|
<AppFooter />
|
|
</main>
|
|
</template>
|
|
<script setup >
|
|
import { homeStore } from "@/stores/home/index.js";
|
|
const { fullLive } = homeStore()
|
|
</script> |