首页 > 其他 > 详细

Ant Design Vue table行点击事件

时间:2021-06-04 17:51:09      阅读:101      评论:0      收藏:0      [点我收藏+]
  <a-table :rowKey="(record) => record.id" :pagination="pageInfo" :customRow="rowClick" :columns="columns" :data-source="data">
   </a-table>

...

methods: {
        rowClick(record, index) {
            let that = this;
            return {
                onClick: (event) => {
                   //Do something
                },
            };
        }
}

Ant Design Vue table行点击事件

原文:https://www.cnblogs.com/guolintao/p/14849415.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!