vux-ui 用了tabbar后怎么使用全屏组件
问题
项目用了vux-ui ,使用tabbar 来导航。 后来在子路由里面使用全屏组件发现组件fixed 层级设置再怎么高,都无法覆盖住tabbar ,请问如何解决?
代码
<template>
<div id="app" style="height: 100%">
<drawer>
<view-box>
<keep-alive>
<router-view></router-view>
</keep-alive>
</view-box>
</drawer>
<tabbar>
<tabbar-item link="/index" :selected="$route.path == '/index'">
<span slot="icon" class="iconfont icon-home"></span>
<span slot="label">首页</span>
</tabbar-item>
<tabbar-item link="/storeCenter" :selected="$route.path == '/storeCenter'">
<span slot="icon" class="iconfont icon-store"></span>
<span slot="label">门店</span>
</tabbar-item>
<tabbar-item link="/explore" :selected="$route.path == '/explore'">
<span slot="icon" class="iconfont icon-search"></span>
<span slot="label">发现</span>
</tabbar-item>
<tabbar-item show-dot link="/me" :selected="$route.path == '/me'">
<span slot="icon" class="iconfont icon-wode"></span>
<span slot="label">我的</span>
</tabbar-item>
</tabbar>
</div>
</template>
截图
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
直接tabbar控件用一个控制变量来显示隐藏。
`<tabbar class="vux-demo-tabbar" icon-class="vux-center" v-show="!isTabbarDemo" slot="bottom">
||判断测试可以
good,成功实现