Vue事件中心管理传递--组件传值--传值

大祥子
2021-10-12 / 0 评论 / 213 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年10月12日,已超过927天没有更新,若内容或图片失效,请留言反馈。

// 事件中心
import Vue from 'vue'
export default new Vue()


// 引入事件中心传递
import Bus from '../../util/Bus'
// 发送
Bus.$emit('名称', 数据)

// 引入事件中心传递
import Bus from '../../util/Bus'
// 接收,最好放在created里接收
Bus.$on('treeData', treeData => {
  this.treeData = treeData
  // console.log('我是树形:' + treeData)
})
0

评论 (0)

取消