I\'m trying to perform a dispatch on \'logOutUser\' in vuex store, and i\'m getting the following error message in respone:
TypeError: Cannot read pro
I have faced the same issue because missed importing "store". Solved it as :
import store from './store' new Vue({ el: '#app', store, render: h => h(App), })