美文网首页
.native是干嘛的?

.native是干嘛的?

作者: wu_9f41 | 来源:发表于2021-03-12 16:47 被阅读0次

    正常写法:

    card.vue

    <div @click="onClick">点击我试试</div>
    
    onClick(){
        1. 事件必须写在子组件里
        2. 如果事件需要外部处理,需要
    }
    

    .native写法:

    card.vue

    <div>惦记我试试</div>
    

    父组件里:

    <card @click.native="onClick"/>
    
    onClick(){
        1. 事件写在父组件里
        2. 缺点是只能绑定到子组件的根元素上
    }
    

    相关文章

      网友评论

          本文标题:.native是干嘛的?

          本文链接:https://www.haomeiwen.com/subject/cipzqltx.html