admin.js 170 B

12345678910111213
  1. import { make } from 'vuex-pathify'
  2. const state = {
  3. theme: {
  4. dark: false
  5. }
  6. }
  7. export default {
  8. namespaced: true,
  9. state,
  10. mutations: make.mutations(state)
  11. }