UNPKG

@58fe/p5

Version:

pc端vue组件

36 lines (32 loc) 885 B
function broadcast(componentName, eventName, params) { this.$children.forEach(child => { const name = child.$options.name; if (name === componentName) { child.$emit.apply(child, [eventName].concat(params)); } else { broadcast.apply(child, [componentName, eventName].concat(params)); } }); } export default { methods: { // 向上查找并触发事件 dispatch(componentName, eventName, params) { let parent = this.$parent || this.$root; let name = parent.$options.name; while (parent && (!name || name !== componentName)) { parent = parent.$parent; if (parent) { name = parent.$options.name; } } if (parent) { parent.$emit.apply(parent, [eventName].concat(params)); } }, // 向下查找并触发事件 broadcast(componentName, eventName, params) { broadcast.call(this, componentName, eventName, params); } } };