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.

19 lines
288 B

  1. import { make } from 'vuex-pathify'
  2. /* global siteConfig */
  3. const state = {
  4. info: {
  5. currentVersion: 'n/a',
  6. latestVersion: 'n/a',
  7. groupsTotal: 0,
  8. pagesTotal: 0,
  9. usersTotal: 0
  10. }
  11. }
  12. export default {
  13. namespaced: true,
  14. state,
  15. mutations: make.mutations(state)
  16. }