BasicColumn 配置

1
2
3
4
5
6
7
const columns: BasicColumn[] = [
{
title: 'yourTitle',
dataIndex: 'yourDataIndex',
slots: {customRender: 'yourSlotName'},
},
];

页面使用

1
2
3
4
5
<BasicTable @register="register">
<template #yourSlotName="{ record }">
{{ record['yourDataIndex'] }}
</template>
</BasicTable>