当前位置: 首页 > 工具软件 > tableFilter > 使用案例 >

ElementUI中table筛选不触发filter-method的问题

后学
2023-12-01
<el-table-column  label="状态" prop="status" width="120" filterable :filters="statusList"
	 :filter-method="filterStatus" filter-placement="bottom-end"  align="center">
	 <template slot-scope="scope">
	   {{scope.row.status | turnStatus }}
	 </template>
</el-table-column>

原因 el-table-column标签未加prop标签

 类似资料: