Merge pull request #349 from Ponkhy/redirect-after-setup

Auto login after setup
This commit is contained in:
Louis Lam
2021-09-07 21:16:54 +08:00
committed by GitHub

View File

@@ -85,7 +85,12 @@ export default {
this.$root.toastRes(res)
if (res.ok) {
this.$router.push("/")
this.processing = true;
this.$root.login(this.username, this.password, (res) => {
this.processing = false;
this.$router.push("/")
})
}
})
},