wikijs-fork/client/store/editor.js
2019-01-01 17:03:30 -05:00

14 lines
185 B
JavaScript

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