24 lines
399 B
JavaScript
24 lines
399 B
JavaScript
![]() |
const vuex_tabbar = [
|
||
|
{
|
||
|
iconPath: "gift",
|
||
|
selectedIconPath: "gift-fill",
|
||
|
text: "成品",
|
||
|
pagePath: "/pages/product/index"
|
||
|
},
|
||
|
{
|
||
|
iconPath: "bag",
|
||
|
selectedIconPath: "bag-fill",
|
||
|
text: "原材",
|
||
|
pagePath: "/pages/material/index"
|
||
|
},
|
||
|
{
|
||
|
iconPath: "account",
|
||
|
selectedIconPath: "account-fill",
|
||
|
text: "个人",
|
||
|
pagePath: "/pages/account/index"
|
||
|
}
|
||
|
]
|
||
|
|
||
|
export default {
|
||
|
vuex_tabbar
|
||
|
}
|