-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Description
- I have searched the issues of this repository and believe that this is not a duplicate.
What problem does this feature solve?
table渲染多层json
What does the proposed API look like?
table中columns的定义如下:
const columns = reactive([
{
title: '姓名',
dataIndex: 'root.name',
key: 'root.name',
},
{
title: '年龄',
dataIndex: 'root.age',
key: 'root.age',
},
{
title: '住址',
dataIndex: 'root.address',
key: 'root.address',
},
])