wikijs-fork/client/store/admin.js
2018-12-15 17:15:13 -05:00

20 lines
288 B
JavaScript

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)
}