Is it possible to determine if, when accessing a computed property that retrieves its value from the store within a created block, the computed value has already been initialized?
async created(){
!this.apps.length && await this.loadApps();
},
computed: {
...mapGetters('apps-store', ['apps']),
},