import { createStore } from "vuex"; export default createStore({ state: { count: 1, loading: 0, }, mutations: { loadingStart(state) { state.loading++ }, loadingDone(state) { state.loading-- if (state.loading < 0) state.loading = 0 } }, actions: {}, getters: {}, modules: {} });