Vue v-on:click does not work on component

前端 未结 7 1437
日久生厌
日久生厌 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:43

    If you want to listen to a native event on the root element of a component, you have to use the .native modifier for v-on, like following:

    
    

    or in shorthand, as suggested in comment, you can as well do:

    
    

提交回复
热议问题