diff --git a/src/pages/Setup.vue b/src/pages/Setup.vue index dbff8683..9cb7c5ec 100644 --- a/src/pages/Setup.vue +++ b/src/pages/Setup.vue @@ -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("/") + }) } }) },