table中列属性
formatter
,格式化表格数据->处理表格中显示的内容
(像根据状态数值去显示当前状态对应的中文,或者处理一些是与否相间等)
实现代码
<template>
<el-table-column
v-for="(item,index) in columns"
:prop="item.prop"
:label="item.label"
:width="item.width || ''"
:formatter="item.formatter">
</el-table-column>
</template>
<script setup>
const columns = ref([
{
label: '项目名称',
prop: 'projectName'
},
{
label: '状态',
prop: 'isEnable',
formatter: (row) => {
let curStatus = '';
projectsData.findIndex(item => {
if(item.value == row.isEnable) curStatus = item.label;
})
return curStatus
}
},
])
</script>
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » elment表格组件a-table属性formatter
发表评论 取消回复