0%

在不使用router-link的前提下,实现路由的跳转

例如,点击button按钮实现路由的跳转
在这里插入图片描述
如果想要取消浏览器的后退/前进功能,可以使用replace

1
2
3
4
5
6
7
8
9
10
methods: {
homeClick() {
// this.$router.push("/home");
this.$router.replace("/home");
},
aboutClick() {
// this.$router.push("/about");
this.$router.replace("/about");
}
}