wikijs-fork/client/store/admin.js

14 lines
170 B
JavaScript
Raw Normal View History

2018-07-15 23:16:19 +00:00
import { make } from 'vuex-pathify'
const state = {
theme: {
dark: false
}
}
2018-06-10 00:11:00 +00:00
export default {
namespaced: true,
2018-07-15 23:16:19 +00:00
state,
mutations: make.mutations(state)
2018-06-10 00:11:00 +00:00
}