wikijs-fork/client/store/site.js

17 lines
250 B
JavaScript
Raw Normal View History

2018-08-04 21:27:55 +00:00
import { make } from 'vuex-pathify'
/* global siteConfig */
const state = {
company: '',
dark: siteConfig.darkMode,
2018-08-04 21:27:55 +00:00
mascot: true,
title: siteConfig.title
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}