UNPKG

@controlla/cli

Version:

Command line interface for rapid Controlla projects development

20 lines (16 loc) 275 B
export const state = () => ({ isLoading: true }) export const mutations = { LOADED(state) { state.isLoading = false } } export const actions = { loaded({ commit }) { commit('LOADED') } } export const getters = { isLoading: (state) => state.isLoading }