forked from hjyue1/react-do-tree-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
43 lines (43 loc) · 1 KB
/
data.js
File metadata and controls
43 lines (43 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
export default [
{
title: '广东省',
value: '1',
children: [
{
title: '广州市',
value: '1-1',
children: [
{
title: '越秀区',
value: '1-1-1',
},{
title: '白云区',
value: '1-1-2',
}
]
},{
title: '珠海市',
value: '1-2',
disabled: true,
},{
title: '深圳市',
value: '1-3',
}
]
},{
title: '广西省',
value: '2',
children: [
{
title: '南宁市',
value: '2-1',
},{
title: '桂林市',
value: '2-2',
},{
title: '玉林市',
value: '2-3',
}
]
}
]