wikijs-fork/client/js/store/modules/modal-create-page.js

20 lines
422 B
JavaScript
Raw Normal View History

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