[Vuejs]-Vuex computed property not updating v-show

3👍

In your store, isEventSelected is a getter, not a state property so you should use mapGetters, eg

import { mapState, mapGetters } from 'vuex'

// snip

computed: {
  ...mapState('events', ['selectedEvent']),
  ...mapGetters('events', ['isEventSelected'])
}
👤Phil

Leave a comment