请严格按照以下数据结构设置数据
//数据结构
[
{
"title": "这是动态渲染的", //标题
"icon": "ဂ", //图标,支持layui-icon 和 font-awesome
"href": "", //跳转的地址,如果有字节点,该地址将无效
"spread":true, //默认展开
"children": [ //子项
{
"title": "表单",
"icon": "",
"href": "form.html"
}
//...
]
}, {
"title": "地址本",
"icon": "fa-address-book",
"href": "",
"spread":false,
"children": [
{
"title": "Github",
"icon": "fa-github",
"href": "https://www.github.com/"
},
{
"title": "QQ",
"icon": "fa-qq",
"href": "http://www.qq.com/"
},
{
"title": "Fly社区",
"icon": "",
"href": "http://fly.layui.com/"
}
//...
]
}, {
"title": "33333",
"icon": "",
"href": "",
"spread":false
}
]