wikijs-fork/client/js/store/modules/modal-create-user.js
2017-05-25 20:54:03 -04:00

17 lines
316 B
JavaScript

'use strict'
export default {
namespaced: true,
state: {
shown: false
},
getters: {},
mutations: {
shownChange: (state, shownState) => { state.shown = shownState }
},
actions: {
open({ commit }) { commit('shownChange', true) },
close({ commit }) { commit('shownChange', false) }
}
}