const state = { loading: false } const getters = { isLoading(state) { return state.loading } } export default { state, getters }