mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
34 lines
888 B
JavaScript
34 lines
888 B
JavaScript
|
function broadcast (componentName, eventName, params) {
|
||
|
this.$children.forEach(child => {
|
||
|
let name = child.$options.componentName
|
||
|
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)
|
||
|
}
|
||
|
}
|
||
|
}
|