mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
549 B
23 lines
549 B
'use strict'
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state: {
|
|
busy: false,
|
|
insertContent: ''
|
|
},
|
|
getters: {},
|
|
mutations: {
|
|
busyChange: (state, busyState) => { state.shown = busyState },
|
|
insertContentChange: (state, newContent) => { state.insertContent = newContent }
|
|
},
|
|
actions: {
|
|
busyStart({ commit }) { commit('busyChange', true) },
|
|
busyStop({ commit }) { commit('busyChange', false) },
|
|
insert({ commit }, content) {
|
|
commit('insertContentChange', content)
|
|
wikijs.$emit('editor/insert')
|
|
}
|
|
}
|
|
}
|