hotWords.js 211 B

123456789101112131415
  1. export default {
  2. namespaced: true,
  3. state: {
  4. // 搜索关键字
  5. hotWord: []
  6. },
  7. getters: {},
  8. mutations: {
  9. setHotWord(state, fastsearchforhotwords) {
  10. state.hotWord = fastsearchforhotwords;
  11. }
  12. }
  13. }