15 lines
204 B
JavaScript
Raw Normal View History

2018-07-15 19:16:19 -04:00
import { make } from 'vuex-pathify'
const state = {
editor: '',
content: '',
mode: 'create',
activeModal: ''
2018-07-15 19:16:19 -04:00
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}