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

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

代码

<button @click = "gotolink" class = "btn-success"> 点击跳转页面</button>
methods:{
    gotolink(){
        //点击跳转至上次页面
        //this.$router.go(-1)
        //指定跳转地址
        this.$router.replace('/login')
    }
}
Logo

前往低代码交流专区

更多推荐