这是MyCompnent
props: ['visible']
methods: {
update () {
this.$emit('update:visible')
}
}
我在jsx中使用这个组件:
<MyComponent visible={this.visible} {...{['on-update:visible']: console.log}} />
但无法绑定事件。
所以如何在jsx中绑定此事件。
答案 0 :(得分:0)
我找到了示例https://github.com/vuejs/babel-plugin-transform-vue-jsx/blob/master/example/example.js
的答案它不能这样写:
<MyComponent visible={this.visible} {...{on:{'update:visible': console.log}} />