[Vuejs]-Vue router and recieving data from store

0👍

Instead of having getters in the mounted or created properties you can try having them in computed properties. That way it will make sure to load your data when it’s actually wanted https://v2.vuejs.org/v2/guide/computed.html.

Also you can try checking for Caveats https://v2.vuejs.org/v2/guide/list.html#Caveats . The data might be not be reactive friendly for Vuejs to load it after it gets fetched.

Leave a comment