unknown
2024-05-28 f7a1e23185b5146571e81f0daab5698527a0fb21
src/books/English/view/components/index.vue
@@ -281,10 +281,17 @@
        }
      });
    },
    // 点击事件:将生僻单词传给 主应用 从而调用词典功能
    saveCharacters(word) {
      console.log('生僻字',word);
    saveCharacters(event,word) {
      console.log('生僻字',event,word);
      if (this.$store.state.qiankun && this.$store.state.qiankun.chooseWords) {
          this.$store.state.qiankun.chooseWords({
            word,
            x: event.pageX,
            y: event.pageY
          });
        }
      // chooseWords
    }
  },
};