page.js 372 B

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