Vue 页面跳转

Vue 页面跳转的 5 种方式

this.$router.push
this.$router.replace
this.$router.go
this.$router.back
this.$router.forward

this.$router.push

想要导航到不同的 URL,则使用 router.push 方法。这个方法会向 history 栈添加一个新的记录,所以,当用户点击浏览器后退按钮时,则回到之前的 URL。

示例:

// 保留当前页,页面跳转至 /home 页
this.$router.replace("/home");

this.$router.replace

跟 router.push 很像,唯一的不同就是,它不会向 history 添加新记录,而是跟它的方法名一样 —— 替换掉当前的 history 记录。

示例:

// 取代当前页,页面跳转至 /home 页
this.$router.replace("/home");

this.$router.go

这个方法的参数是一个整数,意思是在 history 记录中向前或者后退多少步。参数为 0 时会重新加载页面,但会有短暂白屏。

// 回退两个页面
this.$router.go(-2);

this.$router.back

在 history 记录中,返回上一页。

this.$router.forward

在 history 记录中,前往下一页。

参考资源

vue-router 官方文档

https://blog.csdn.net/fufu_dclt/article/details/105134806

每天学习一点点,每天进步一点点。

posted @   爱吃西瓜的番茄酱  阅读(272)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· 程序员常用高效实用工具推荐,办公效率提升利器!
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 【译】WinForms:分析一下(我用 Visual Basic 写的)
点击右上角即可分享
微信分享提示