📅  最后修改于: 2022-03-11 15:04:15.838000             🧑  作者: Mango
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');
}
}
}