stack overflow url: https://stackoverflow.com/questions/67348504/nuxt-auth-not-redirecting-after-logout
export default {
methods: {
async logout () {
await this.$auth.logout()
this.$router.push('login');
}
}
}