60 words
1 minute
Vue Router使用
2022-10-20

一些常用方法

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

// 关闭当前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/2022/2022-10-20-vue-router使用/
Author
Doracoin
Published at
2022-10-20
License
CC BY-NC-SA 4.0