Vue 跳转
Posted ywjfx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 跳转相关的知识,希望对你有一定的参考价值。
1、可以在请求中添加跳转
myLogin(){ console.log(this.account+"----"+this.accountPassword) if(this.account == ‘‘ || this.accountPassword == ‘‘) { console.log(this.account) this.show( ‘请填写用户名/密码‘) }else { this.$http.post(‘http://localhost:8081/getUserByNameAndPsw‘, { userName: this.account, password:this.accountPassword }).then((response) => { console.log(response.body) if(response.body.code === 200){ this.visibleFlag = true console.log("成功登陆") this.$router.push(‘/navigation‘) // 实现跳转 }else { console.log(response.body.msg); this.visibleFlag = true this.show(response.body.msg) } }) } } }
以上是关于Vue 跳转的主要内容,如果未能解决你的问题,请参考以下文章