admin.js 209 B

123456789101112131415
  1. import { make } from 'vuex-pathify'
  2. /* global siteConfig */
  3. const state = {
  4. theme: {
  5. dark: siteConfig.darkMode
  6. }
  7. }
  8. export default {
  9. namespaced: true,
  10. state,
  11. mutations: make.mutations(state)
  12. }