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.

17 lines
263 B

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