Wondering if - by the time - accessing a computed property that gets its value from storage - within the created block - I can be sure that the computed value has started.
async created(){
!this.apps.length && await this.loadApps();
},
computed: {
...mapGetters('apps-store', ['apps']),
},
Hooks are just functions that are fired at the appropriate time - they are announcements not middleware. Therefore, async hooks do not wait to be completed. You should provide default values for application getter__ in the getter function or its state.