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
Source:stackexchange.com