Vue 中的Vue Router一级路由,二级路由,三级路由以及跳转
//跳转到上一次的页面//this.$router.go(-1)//指定跳转的地址//this.$router.replace('/learn')//指定跳转路由的名字下//this.$router.replace({name:'menuLink'})//通过push进行跳转this.$route...
·
//跳转到上一次的页面
//this.$router.go(-1)
//指定跳转的地址
//this.$router.replace('/learn')
//指定跳转路由的名字下
//this.$router.replace({name:'menuLink'})
//通过push进行跳转
this.$router.push("/learn");
//this.$router.push({name:'/learn'})
更多推荐
已为社区贡献1条内容
所有评论(0)