vue中在组件上使用@click事件无效

大城市里の小女人 提交于 2020-01-15 02:18:35

.native修饰符

el-row(:gutter="20")
    el-col(@click.native="testClick(index)")
        i(:class='item.iconClass',style='font-size:64px').iconfont
        p(style='margin:0') {{item.name}}
        p ¥{{item.price}}/次

在组件上使用@click需要加上.native修饰符

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!