Vue.js computed property not updating
If your intention is for the computed property to update when project.classes.someSubProperty changes, that sub-property has to exist when the computed property is defined. Vue cannot detect property addition or deletion, only changes to existing properties. This has bitten me when using a Vuex store with en empty state object. My subsequent changes to the … Read more