25 lines
607 B
Vue
25 lines
607 B
Vue
<template>
|
|
<van-config-provider :theme="appStore.isDark ? 'dark' : 'light'">
|
|
<section class="layout-mobile-home"
|
|
:class="{ 'hide-tab-bar': appStore.isShowMobileBack }">
|
|
<title-bar />
|
|
|
|
<router-view />
|
|
|
|
<tab-bar v-if="!appStore.isShowMobileBack"/>
|
|
</section>
|
|
</van-config-provider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import TitleBar from '@/layout/TitleBar.vue'
|
|
import TabBar from '@/layout/TabBar.vue'
|
|
import { useAppStore } from '@/store/app.ts'
|
|
|
|
const appStore = useAppStore()
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@use "@/styles/mobile.home.layout.module";
|
|
</style>
|