1👍
✅
Since I can’t see the full code example I can only guess, that you did not define a getter as followed:
events: (state) => state.events,
If you want to compute the state, change your code to
computed: {
...mapState(["events"]),
}
Hope I could help!
Source:stackexchange.com