2
0

admin.js 288 B

12345678910111213141516171819
  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. }