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.

21 lines
319 B

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