Files
wikijs-fork/client/store/editor.js
T

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)
}