page.js 360 B

1234567891011121314151617181920212223
  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. }
  17. export default {
  18. namespaced: true,
  19. state,
  20. mutations: make.mutations(state)
  21. }