UNPKG

vue-cli-plugin-templates

Version:

vue-cli 3 plugin to add @shiyaping/vue-template | @shiyapings/vue-typescript-template

17 lines (16 loc) 225 B
export default { state: { common: 1 }, getters: {}, mutations: { SET_COMMON: state => { state.common++ } }, actions: { UPDATE_COMMON: ({ commit }) => { commit('SET_COMMON') } } }