You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
376 B

  1. import { make } from 'vuex-pathify'
  2. /* global siteConfig */
  3. const state = {
  4. company: '',
  5. dark: siteConfig.darkMode,
  6. mascot: true,
  7. title: siteConfig.title,
  8. search: '',
  9. searchIsFocused: false,
  10. searchIsLoading: false,
  11. searchRestrictLocale: false,
  12. searchRestrictPath: false
  13. }
  14. export default {
  15. namespaced: true,
  16. state,
  17. mutations: make.mutations(state)
  18. }