forked from lgwebdream/fe-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentry.js
More file actions
40 lines (40 loc) · 685 Bytes
/
entry.js
File metadata and controls
40 lines (40 loc) · 685 Bytes
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
module.exports = {
id: 'product',
name: 'product',
tag: 'div',
text: 123,
style: {
width: '100%',
'line-height': '1',
},
children: [
{
name: 'menu',
tag: 'ul',
style: {
width: '100%',
'line-height': '1.2',
},
children: [
{
name: 'item',
tag: 'li',
style: {
width: '100px',
'font-size': '14px',
},
text: 'menu1',
},
{
name: 'item',
tag: 'li',
style: {
width: '100px',
'font-size': '14px',
},
text: 'menu2',
},
],
},
],
};