25 lines
488 B
JavaScript
Raw Normal View History

2018-08-04 17:27:55 -04:00
import { make } from 'vuex-pathify'
/* global siteConfig */
const state = {
company: siteConfig.company,
2020-02-23 15:20:55 -05:00
contentLicense: siteConfig.contentLicense,
dark: siteConfig.darkMode,
2018-08-04 17:27:55 -04:00
mascot: true,
2019-03-09 00:51:02 -05:00
title: siteConfig.title,
logoUrl: siteConfig.logoUrl,
2019-03-09 00:51:02 -05:00
search: '',
2019-03-09 18:43:32 -05:00
searchIsFocused: false,
2019-03-09 00:51:02 -05:00
searchIsLoading: false,
searchRestrictLocale: false,
searchRestrictPath: false,
printView: false
2018-08-04 17:27:55 -04:00
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}