editor.js 295 B

12345678910111213141516171819
  1. import { make } from 'vuex-pathify'
  2. const state = {
  3. title: '',
  4. description: '',
  5. tags: [],
  6. path: '',
  7. isPublished: true,
  8. publishStartDate: '',
  9. publishEndDate: '',
  10. locale: 'en',
  11. mode: 'create'
  12. }
  13. export default {
  14. namespaced: true,
  15. state,
  16. mutations: make.mutations(state)
  17. }