a() {
this.$router.push({ path: "/a-a"});
}
b() {
this.$router.push({ path: "/b-b"});
}
vue项目就会起不来 如何实现跳转俩个页面 俩个单击事件
a() {
this.$router.push({ path: "/a-a"});
}
b() {
this.$router.push({ path: "/b-b"});
}
vue项目就会起不来 如何实现跳转俩个页面 俩个单击事件
还不能写两个地方,你的意思是this.$router.push不能写多次??一个页面有多个地方可以跳转是很正常的事啊,怎么会使得vue项目起不来。应该是跳转部分的逻辑影响,或者报错引起的