在不使用router-link的前提下,实现路由的跳转 发表于 2020-07-19 分类于 Vue.js , router 阅读次数: 例如,点击button按钮实现路由的跳转如果想要取消浏览器的后退/前进功能,可以使用replace 12345678910methods: { homeClick() { // this.$router.push("/home"); this.$router.replace("/home"); }, aboutClick() { // this.$router.push("/about"); this.$router.replace("/about"); } } 打赏 微信支付 支付宝 本文作者: WRM 本文链接: http://wrmxx.github.io/2020/07/19/在不使用router-link的前提下,实现路由的跳转/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!