0
我編寫了一個functional component,它爲某些條件編譯表單域。表單域是它們自己的組件。所以,我有三個層次:如何在功能性Vuejs組件中發出事件
<FormComponent> // handles input events
<FunctionalComponent> // selects form fields
<FormFieldComponent> // emits input events
</FunctionalComponent>
</FormComponent>
功能組件沒有this
,卻得到了一個上下文對象作爲參數傳遞給渲染功能。我能做的是使用context.data.on[eventName](event)
或一些類似的構造。我也知道我可以直接使用事件總線或dom元素,如描述here。
這一切對我來說都很骯髒。 功能組件中是否有任何this.$emit
相等?
你是說你想讓你的FunctionalComponent將你的FormFieldComponent中的事件傳播到你的FormComponent? –
https://github.com/vuejs/vue/issues/3348 –
是的,就是這樣!我花了一分鐘的時間來圍繞它,但這應該解決我的問題。非常感謝@RoyJ – koehr