| 12345678910111213141516171819 | import { make } from 'vuex-pathify'/* global siteConfig */const state = {  info: {    currentVersion: 'n/a',    latestVersion: 'n/a',    groupsTotal: 0,    pagesTotal: 0,    usersTotal: 0  }}export default {  namespaced: true,  state,  mutations: make.mutations(state)}
 |