最终效果:

点击指定按钮,跳转指定 /login 页面

vue  点击按钮  路由跳转指定页面_跳转页面

代码:

<button @click="gotolink" class="btn btn-success">点击跳转页面</button>
methods:{
gotolink(){

//点击跳转至上次浏览页面
// this.$router.go(-1)

//指定跳转地址
this.$router.replace('/login')
}
}