vue路由跳转到指定页面

Posted on 2019-04-07 11:38  猫头唔食鱼  阅读(2733)  评论(0编辑  收藏  举报

1.this.$router.push({name:'Home'})

2.this.$router.push({path:'/view'})

3.this.$router.replace({name:'Home'})

4.this.$router.replace({path:'/view'})