wikijs-fork/client/store/admin.js
2018-08-04 17:28:39 -04:00

16 lines
209 B
JavaScript

import { make } from 'vuex-pathify'
/* global siteConfig */
const state = {
theme: {
dark: siteConfig.darkMode
}
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}