火山喷出爆米花
火山喷出爆米花
  • 发布:2025-03-18 16:12
  • 更新:2025-03-19 10:19
  • 阅读:20

#插件讨论# 【 fqt-wyb-table多功能表格 - 1***@qq.com 】如何自定义渲染

分类:uni-app

如何自定义渲染单元格的内容类似slot的功能 貌似只支持后面加字?formatCol: [{
key: 'deputyStatus',
template: #deputyStatus#岁,
bottomComputedFormat: false
}],

2025-03-18 16:12 负责人:无 分享
已邀请:
1***@qq.com

1***@qq.com

现在已经增加示例项目了,像这样就可以自定义渲染表格内容


headers: [{  
                        label: '地址',  
                        key: 'address',  
                        width: '300',  
                        slot: 'address'  
        }],
```html  
<template #address="scope">  
    {{scope.item.address}}  
</template>

要回复问题请先登录注册