editor.js 171 B

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