美文网首页
vue 中 @click.native.prevent 事件

vue 中 @click.native.prevent 事件

作者: SY | 来源:发表于2021-12-24 14:34 被阅读0次
    <el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">登录</el-button>
    

    1.在封装好的组件上使用,必须加上.native才能click

    2.prevent用来阻止默认事件,相当于....event.preventDefault(),父组件想在子组件上监听自己的click的话,需要加上native修饰符。

    相关文章

      网友评论

          本文标题:vue 中 @click.native.prevent 事件

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