gitakachan / vue-project-collections-and-issues

vue issues
0 stars 0 forks source link

v-on: native修飾符(但vue3已取消) #2

Open gitakachan opened 3 years ago

gitakachan commented 3 years ago

组件想在子组件上监听自己的click的话,需要加上native修饰符

<my-component
  v-on:click.native="handleNativeClickEvent"
/>

參考自: 1.官方文檔

  1. http://skyroxas.tw/vue-js%E8%B8%A9%E9%9B%B7%E7%AF%87-vue-v-onclick-not-work-component/