pages.js 617 B

123456789101112131415161718192021222324252627282930313233
  1. import api from '@/api'
  2. import { Page } from '@/api/queries'
  3. export default {
  4. state: {
  5. welcome: undefined,
  6. intro: undefined,
  7. ids: {
  8. welcome: 1,
  9. intro: 207
  10. }
  11. },
  12. mutations: {
  13. 'SET_PAGE' (state, { slug, page }) {
  14. state[slug] = page
  15. }
  16. },
  17. actions: {
  18. async 'QUERY_PAGE' ({ state, commit, dispatch, getters }, slug) {
  19. if (state[slug] !== undefined) return state[slug]
  20. return api.query(Page, { id: state.ids[slug] }).then(data => {
  21. commit('SET_PAGE', { slug, page: data.page })
  22. return state[slug]
  23. })
  24. }
  25. },
  26. getters: {
  27. }
  28. }