2
0

editor.js 204 B

1234567891011121314
  1. import { make } from 'vuex-pathify'
  2. const state = {
  3. editor: '',
  4. content: '',
  5. mode: 'create',
  6. activeModal: ''
  7. }
  8. export default {
  9. namespaced: true,
  10. state,
  11. mutations: make.mutations(state)
  12. }