解决Elementui使用table组件添加sortable进行排序,遇到sort-change事件报Cannot destructure property ‘column‘ of ‘undefind

项目场景:

Vue2.0+Eleementui使用table组件想要对table组件的某个列名进行远程排序。

问题描述

Vue2.0和Elementui配合一起使用,使用table组件,想要对组件某个列名进行排序,elementui使用文档是这样说明的,对应列是否可以排序,如果设置为 ‘custom’,则代表用户希望远程排序,需要监听 Table 的 sort-change 事件;
在这里插入图片描述
在这里插入图片描述
可我在组件中使用sort-change 事件,却报如下的错误:
<el-table
:data=“tableData”
style=“width: 100%”
:border=“border”
:stripe=“stripe”
@sort-change=“sortChange()”
>
methods: {
// 远程排序(请求接口)
sortChange({ column, prop, order }) {
console.log(column, prop, order);
},
}
Cannot destructure property ‘column‘ of ‘undefind

解决方案:

<el-table
:data=“tableData”
style=“width: 100%”
:border=“border”
:stripe=“stripe”
@sort-change=“sortChange($event)”
>
打印出来结果如下,就不会报错了
在这里插入图片描述

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值