16 lines
209 B
JavaScript
Raw Normal View History

2018-07-15 19:16:19 -04:00
import { make } from 'vuex-pathify'
2018-08-04 17:27:55 -04:00
/* global siteConfig */
2018-07-15 19:16:19 -04:00
const state = {
theme: {
2018-08-04 17:27:55 -04:00
dark: siteConfig.darkMode
2018-07-15 19:16:19 -04:00
}
}
2018-06-09 20:11:00 -04:00
export default {
namespaced: true,
2018-07-15 19:16:19 -04:00
state,
mutations: make.mutations(state)
2018-06-09 20:11:00 -04:00
}