[Vuejs]-When trying to watch for a state change it does not get caught using Vuex in Nuxtjs

0👍

Try to use this.$store.getters[‘login/loggedState’] or maybe you are trying to access a getter that doesn’t exist (loggetState instead of loggedState).

The rest of the code sounds good to me

Leave a comment