Vue 3 中兄弟间传值可以使用 Vuex,但小项目使用过于庞大,我们可以使用mitt
进行兄弟组件间传值。
操作步骤
第一步:安装 mitt
npm i mitt
第二步:创建文件(例如:eventBus.js)
import mitt from 'mitt'
export default mitt();
第三步:将该文件引入至需要进行发送及接受的 .vue 文件中
import emitter from "../untils/eventBus";
// 或考虑绑定到vue实例
// app.config.globalProperties.$bus = emitter
第四步:发送端写入下列代码(订阅)
// 前面是事件,后面是要传入的参数
emitter.emit("response", response)
第五步:接收端写入下列代码(发布)
// 这样两个组件间就可以进行传值通信了
emitter.on("response", (response) => {
console.log(response)
})
标签:Vue,mitt,response,组件,js,emitter,传值
From: https://www.cnblogs.com/echohye/p/17138881.html