[Vuejs]-Vuex watch not triggereing on all state changes

1👍

Instead of using @State('records') private records!: RecordModuleState;
you should be using @Getter records.

Leave a comment