import { ref, h } from 'vue'; import { Tag } from 'ant-design-vue'; const tag = h(Tag, { color: "blue" }, 'label') function customRender({ value, column }, options) { return tag; } const dataSource = ref([ { a: 1 }, { a: '2,1'}, { a: 3 }, ]) const columns = ref([ { title: '哈哈哈', dataIndex: 'a', customRender, }, ]) [文档地址](https://link.segmentfault.com/?enc=SyxwpblO8lyIhtmwGKs90g%3D%3D.wEU5QDjnHoqTpG5T1niMghXjm316%2FmQkSx99mUChEf0t176%2B18oaqBVSmb%2F5iBIg%2Bmy%2FLtrmD7%2BxyptAGuu9gg%3D%3D) 如何修改呢?