我做了个登录页面。
async onSubmit(values) { const { data:res } = await this.$http.get('index/hello') // if(res.meta.status =='200') return console.log("登录成功") this.$router.push("/home")
}
我这样写的。为啥在电脑上能跳转到 home 在手机上点了啥反应没有呢?
1
lisianthus 2020-07-25 17:16:55 +08:00
是不是因为 status 是 200 而直接 return 了
|
2
legendnan OP @lisianthus 我给他屏蔽 1 了啊?
|
3
liyg04120414 2020-07-26 08:35:02 +08:00
用 vconsole 调试下,看看有没有报错,如果没有,换 this.$router.push({name: 'xxx'})试试
|