vue路由跳转 router-link 清除历史记录的三种方式

时间:2024-12-20 07:14:19
  • 1.在vue项目中说起路由跳转,我们最先想到的就是router-link标签以及this.$函数。
    router-link和this.\$的实现原理是一样的,在点击router-link时,内部调用的就是this.$。
  • 2.this.\$这个方法会向 history 栈添加一个新的记录,所以,当用户点击浏览器后退按钮时,则回到之前的 URL。那在我们使用路由跳转的时候如何去掉历史记录呢?官方文档提供了如下三种方式。
  1. 使用router-link标签时去掉历史记录:加上replace属性
<router-link to='/project_selection' replace class='btn_none' tag="a">项目列表</router-link>
  • 1
'
运行
  1. 使用this.\$标签时去掉历史记录:加上replace属性,默认值为false
this.$router.push({path: '/project_selection',replace:true})
  • 1
'
运行
  1. 使用this.\$标签时去掉历史记录
this.$router.replace({path: '/project_selection'})
  • 1
'
运行

所有内容源自于官网:vue路由核心插件