wikijs-fork/client/store/editor.js
2018-11-10 23:40:55 -05:00

13 lines
171 B
JavaScript

import { make } from 'vuex-pathify'
const state = {
content: '',
mode: 'create'
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}