问题 I try to do a login via nuxt-auth module. As a response I get the token and then the user data is delivered. However, this.$Auth.loggedIn is false and this.$Auth.user is undefined . I have been fighting for 3 days and can not get any further. Hope somebody can help me. login await this.$auth.login({ data: { email: this.email, password: this.password } }).then(() => { this.$router.push('/dashboard') }).catch(err => { this.snackbar.show = true; }) nuxt.config.js auth: { strategies: { local: {