123456789101112131415 |
- 'use strict'
- export default {
- state: {
- shown: false
- },
- getters: {},
- mutations: {
- shownChange: (state, shownState) => { state.shown = shownState }
- },
- actions: {
- adminUsersCreateOpen({ commit }) { commit('shownChange', true) },
- adminUsersCreateClose({ commit }) { commit('shownChange', false) }
- }
- }
|