Vue.component('button-counter', { template: '<button v-on:click="increment()">{{ counter }}</button>', data: function () { return { counter: 0 } }, methods: { increment: function () { this.counter += 1 } },})比如上面的组件,我希望 v-on监听的事件是 父组件传递过来的,而不是在这里写死为click,我该怎么写?我当然知道使用props传递,我想知道v-on后面该怎么写。如果直接写propname的话vue会认为要监听的事件是propname,而不是具体的事件。
1 回答
RISEBY
TA贡献1856条经验 获得超5个赞
题主的需求比较特殊,如果是这样的话可能只能使用render
代替template
了:
<div id="app">
<button-counter :event="'click'">abc</button-counter>
</div>
const counter = Vue.component('button-counter', {
render(createElement) {
return createElement(
'button', {
on: {
[this.event]: this.increment,
},
},
`${this.counter}`,
)
},
data() {
return {
counter: 0,
}
},
props: {
event: String
},
methods: {
increment() {
this.counter += 1
},
},
})
new Vue({
el: '#app',
components: {
'button-counter': counter,
},
})
添加回答
举报
0/150
提交
取消