fix(layout): 🐛 修复横屏的时候 tabbar 因 fixed style 错位的bug

This commit is contained in:
xiangshu233 2024-02-23 21:33:16 +08:00
parent c75a78316d
commit f4abc0c6db

View File

@ -17,7 +17,7 @@
<component :is="Component" v-else :key="route.fullPath" />
</template>
</routerView>
<van-tabbar placeholder route fixed>
<van-tabbar route class="tabbar">
<van-tabbar-item
v-for="menu in getMenus"
:key="menu.name"
@ -55,4 +55,10 @@ const getMenus: ComputedRef<RouteRecordRaw[]> = computed(() =>
const getShowHeader = computed(() => !currentRoute.meta.hiddenHeader)
</script>
<style scoped lang="less"></style>
<style scoped lang="less">
.tabbar {
bottom: 0;
width: 100%;
position: relative;
}
</style>