Logo 下移 safe-area、embed 隐藏 HTML 标题;暖色渐变铺满刘海,页面背景上延与全屏洗底层对齐。 Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
493 B
Vue
20 lines
493 B
Vue
<template>
|
|
<div class="app-shell" :class="{ 'mp-embed': mpEmbed }">
|
|
<div class="app-body">
|
|
<AppHeader />
|
|
<router-view />
|
|
</div>
|
|
<IcpFooter class="app-footer" />
|
|
<TabBar v-if="!mpEmbed" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import AppHeader from './components/AppHeader.vue'
|
|
import IcpFooter from './components/IcpFooter.vue'
|
|
import TabBar from './components/TabBar.vue'
|
|
import { isMpEmbed } from './lib/mpEmbed'
|
|
|
|
const mpEmbed = isMpEmbed()
|
|
</script>
|