mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
20 lines
288 B
JavaScript
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)
|
|
}
|