若依 $tab的所有用法

发布时间:2023年12月22日

2023.12.22今天我学习了如何使用$tab来进行路由的跳转。

一、打开页签:

this.$tab.openPage("导航名称","/xxx/xxxx")//对应路由

二、修改页签:

const obj = Object.assign({},this.$route,{title:'xxxx标题'})
this.$tab.updatePage(obj);

三、关闭页签:

const obj = {path:"/xxx/xxx"}//关闭当前tab页签,打开新页面
this.$tab.closeOpenPage(obj);

this.$tab.closePage();//关闭当前页签,回到首页

四:刷新页签:

this.$tab.refreshPage();//刷新当前页签

const obj = {path:"/xxx/xxxx",name:"xxx"}//刷新指定页签
this.$tab.refreshPage(obj);

五:关闭所有页签:

this.$tab.closeAllPage()

六、关闭左侧页签:

this.$tab.closeLeftPage()//关闭左侧页签

const obj = {path:"/xxx/xxxx",name:'xxx'}//关闭左侧指定页签
this.$tab.closeLeftPage(obj)

七、关闭右侧页签:

this.$tab.closeRightPage()//关闭右侧页签

const obj  = {path:"/xxx/xxxx",name:"xxxx"}
this.$tab.closeRightPage(obj);//关闭右侧指定页签

八、关闭其他tab页签:

this.$tab.closeOtherPage();//关闭其他tab页签

const obj  = {path:"/xxx/xxxx",name:"xxxx"}
this.$tab.closeOtherPage(obj)//关闭其他指定页签

文章来源:https://blog.csdn.net/qq_53986004/article/details/135145832
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。