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.

22 lines
423 B

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