[Vuejs]-How to get data in Vuex store in mounted or created function

0👍

The issue here is that the mounted hook is executing before the async vuex function resolves.

Check out this answer – VueJS – Accessing store data inside mounted

It explains how you could use watch to trigger a function when the async function resolves.

Leave a comment