Nuxt: nuxt auth tidak mengarahkan kembali setelah logout

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');
        }
    }
}
Bored Bug