mirror of
https://github.com/requarks/wiki.git
synced 2026-08-19 01:04:45 -05:00
14 lines
170 B
JavaScript
14 lines
170 B
JavaScript
import { make } from 'vuex-pathify'
|
|
|
|
const state = {
|
|
theme: {
|
|
dark: false
|
|
}
|
|
}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
mutations: make.mutations(state)
|
|
}
|