hotWords.js 841 B

1234567891011121314151617181920212223
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. export default {
  11. namespaced: true,
  12. state: {
  13. // 搜索关键字
  14. hotWord: []
  15. },
  16. getters: {},
  17. mutations: {
  18. setHotWord(state, fastsearchforhotwords) {
  19. state.hotWord = fastsearchforhotwords;
  20. }
  21. }
  22. }