wikijs-fork/client/store/admin.js
2018-07-15 19:16:19 -04:00

14 lines
170 B
JavaScript

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