window.process = { env: {} } /* help vuex.esm cope with living in browser */ import { createStore } from 'vuex' const state = { } const getters = { } const actions = { } const mutations = { } const store = createStore({ state, getters, actions, mutations, }) export default store