[Vuejs]-Event is not rendering from $store.state Vuex

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!

Leave a comment