perf[Tree-Table]: organize the structure and add documentation (#1673)

This commit is contained in:
花裤衩
2019-03-07 14:13:36 +08:00
committed by Pan
parent f8f7667ab1
commit fef2853951
10 changed files with 365 additions and 201 deletions

View File

@@ -0,0 +1,51 @@
const data = [
{
name: '1',
timeLine: 100,
children: [
{
name: '1-1',
timeLine: 20
},
{
name: '1-2',
timeLine: 60,
children: [
{
name: '1-2-1',
timeLine: 35
},
{
name: '1-2-2',
timeLine: 25
}
]
}
]
},
{
name: '2',
timeLine: 80,
children: [
{
name: '2-1',
timeLine: 30
},
{
name: '2-2',
timeLine: 50
},
{
name: '2-3',
timeLine: 60
}
]
},
{
name: '3',
timeLine: 40
}
]
export default data