60 words
1 minute
Vue Router使用
一些常用方法
vue 关闭当前tab 跳转到上一路由
// 关闭当前tabsthis.$store.dispatch("tagsView/delView", this.$route);// 跳转指定路由this.$router.replace({ path: '/education/manage' });// 或者返回上一个页面this.$router.back();// 还可以指定前 n 个页面this.$router.go(-2);