vue跳转

1.link-router标签跳转

<link-router to="/home">首页</link-router>
<link-router to="/about">关于</link-router>
<router-view></router-view>

2.点击事件跳转(push/replace)

<button @click="toHome">首页</button>
<router-view></router-view>

methods:{
  toHome(){
    // push方法浏览器左上角箭头可以前进后退
    this.$router.push('/home')
    // replace方法不可以前进后退
    this.$router.replace('/home')
  }
}

 

posted @ 2021-07-22 16:02  骑蝴蝶飞  阅读(36)  评论(0编辑  收藏  举报