mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 06:22:45 +08:00
fix(layout): 🐛 修复横屏的时候 tabbar 因 fixed style 错位的bug
This commit is contained in:
parent
c75a78316d
commit
f4abc0c6db
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user