- nodes 属性来实现
- 接受标签字符串 最常用
属性名:'<div>' - 对象数组
javascript 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21html:[
{
name:"div",
attrs:{
class:"my_div",
style:"color:red;"
},
children:[
{
name:"p",
attrs:{},
children:[
{
type:"text",
text:"hello"
}
]
}
]
}
]
- 接受标签字符串 最常用