我选择了离子选项卡视图,所以我可以使用模板系统,但我无法删除选项卡。我想要这样的视图,我设法删除标题栏,但我不能删除标签栏
这是我到目前为止
如果我隐藏选项卡(ion-tabs {display:none}),它也会删除内容,这不是我想要的。
解决方法
看看
Ionic tab documentation:
To hide the tabbar but still show the content,add the “tabs-item-hide” class.
所以你会改变这个:
<div class="tabs">
<a class="tab-item" href="#">
Home
</a>
...
</div>
对此:
<div class="tabs tabs-item-hide">
<a class="tab-item" href="#">
Home
</a>
...
</div>