是否有任何文档部分阐明了为什么我应该使用驼峰式大小写作为点击处理程序,但使用烤肉串作为输入(以及其他所有内容)?但不适用于点击,只有点击才onClick
有效。
实际上,我注意到对于公共输入,两个选项都可以正常工作,on-input
或者onInput
.
const MyJSXInput = {
props: {
value: {
type: Boolean,
required: true
},
clickHandler: {
type: Function,
required: true
},
inputHandler: {
type: Function,
required: true
},
},
// eslint-disable-next-line no-unused-vars
render(createElement) {
const { value, clickHandler, inputHandler } = this.$props
return (
<input onClick={clickHandler} on-input={inputHandler} type="checkbox" value={value} />
)
}
}
不知道是否重要,但我将此组件用作另一个组件的渲染功能道具。像这样(全部简化):
renderProp: () => (
<MyJSXInput
value={someValue}
click-handler={this.someHandlerClick}
input-handler={this.someHandlerInput}
/>
)
最后一个组件有这样的东西:
render(h) {
return (
<div>
{this.$props.renderProp(this)}
</div>
)
}