提供一些uniapp tabBar数据
时间: 2023-06-04 17:08:47 浏览: 152
uniapp小程序tabbar图标
好的,以下是一个uniapp tabBar的数据结构示例:
```
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/img/tabbar/home.png",
"selectedIconPath": "static/img/tabbar/home-on.png",
"text": "首页"
}, {
"pagePath": "pages/logs/logs",
"iconPath": "static/img/tabbar/list.png",
"selectedIconPath": "static/img/tabbar/list-on.png",
"text": "日志"
}]
}
```
其中,color为未选中的文字和图标颜色,selectedColor为选中的文字和图标颜色,backgroundColor为tabBar的背景颜色,list为每个tab对应的页面信息。
阅读全文