Vue v-on:click does not work on component

前端 未结 7 1392
日久生厌
日久生厌 2020-11-27 11:16

I\'m trying to use the on click directive inside a component but it does not seem to work. When I click the component nothings happens when I should get a \'test clicked\' i

7条回答
  •  有刺的猬
    2020-11-27 11:33

    Native events of components aren't directly accessible from parent elements. Instead you should try v-on:click.native="testFunction", or you can emit an event from Test component as well. Like v-on:click="$emit('click')".

提交回复
热议问题