-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
55 lines (51 loc) · 2.43 KB
/
db.json
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
44
45
46
47
48
49
50
51
52
53
54
55
[
{
"text": "Root",
"state": {
"opened": true
},
"type": "demo",
"children": [
{
"text": "Child node 1",
"li_attr": {
"class": "li-style"
},
"a_attr": {
"class": "a-style"
},
"icon": "feather icon-feather"
},
{
"text": "Child node 2",
"state": {
"opened": true
},
"icon": "feather icon-feather",
"children": [
{
"text": "Grandchild 1",
"state": {
"selected": true
}
},
{
"text": "Grandchild 2",
"state": {
"disabled": true
},
"children": ["Grandson 1", "Grandson 2"]
},
{
"text": "Grandchild 3",
"icon": "feather icon-feather"
},
]
},
{
"text": "Child node 3",
"children": ["Grandchild 1", "Grandchild 1"]
},
]
}
]