page.js 314 B

123456789101112131415161718192021
  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. tags: [],
  12. title: '',
  13. updatedAt: ''
  14. }
  15. export default {
  16. namespaced: true,
  17. state,
  18. mutations: make.mutations(state)
  19. }