Vue Router使用

本文最后更新于:2024年6月30日 晚上

一些常用方法

vue 关闭当前tab 跳转到上一路由

1
2
3
4
5
6
7
8
// 关闭当前tabs
this.$store.dispatch("tagsView/delView", this.$route);
// 跳转指定路由
this.$router.replace({ path: '/education/manage' });
// 或者返回上一个页面
this.$router.back();
// 还可以指定前 n 个页面
this.$router.go(-2);

Vue Router使用
https://blog.doracoin.cc/posts/Vue-js/58807.html
作者
Doracoin
发布于
2022年10月20日
更新于
2024年6月30日
许可协议