.native是干嘛的?
2021-03-12 本文已影响0人
wu_9f41
正常写法:
card.vue
里
<div @click="onClick">点击我试试</div>
onClick(){
1. 事件必须写在子组件里
2. 如果事件需要外部处理,需要
}
.native写法:
card.vue
<div>惦记我试试</div>
父组件
里:
<card @click.native="onClick"/>
onClick(){
1. 事件写在父组件里
2. 缺点是只能绑定到子组件的根元素上
}