You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
185 B

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