mirror of
https://github.com/vform666/variant-form3-vite.git
synced 2024-11-10 09:39:20 +08:00
重要修改调整:修复dispatch函数未将原生事件回调参数展开的问题。
This commit is contained in:
parent
ae37b5dafd
commit
e04ba65186
@ -66,7 +66,7 @@ export default {
|
|||||||
parent.emit$.call(parent, eventName, params)
|
parent.emit$.call(parent, eventName, params)
|
||||||
|
|
||||||
if (componentName === 'VFormRender') {
|
if (componentName === 'VFormRender') {
|
||||||
parent.$emit(eventName, params) //执行原生$emit,以便可以用@进行声明式事件处理!!
|
parent.$emit(eventName, ...params) //执行原生$emit,以便可以用@进行声明式事件处理!!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user