用vnode描述一个dom结构
{
"tagName": "div",
"attrs": {
"className": "header"
},
"key": "1",
"children": [
{
"tagName": "h1",
"attrs": {
"className": "title"
},
"key": "2",
"children": "这是一个标题"
},
{
"tagName": "p",
"attrs": {
"className": "content"
},
"key": "3",
"children": null
}
]
}