Vue组件库elementUI 在el-row 或 el-col 上使用@click无效失效

/

问题:

elementUI 在el-row 或者 el-col 上使用@click失效,

解决:

在click后面加上 .native 。
要使用@click.native=”handler()”才行,.native代表原生点击事件。

<el-col @click.native=”handler()”></el-col>

Reproduced please indicate the author and the source, and error a link to this page.
text link: //v2ci.com/53.html