import Vue from 'vue'; import Vuex from 'vuex'; Vue.use(Vuex); const store = new Vuex.Store({ state: { loading: true }, mutations: { showLoading(state, show) { state.loading = show; } } }); export default store;