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.

26 lines
572 B

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