页面配置
优质
小牛编辑
136浏览
2023-12-01
小程序端支持在 src/app.json
中进行页面配置,在 routes
数组的每一项里,可将页面配置属性放在 window
中,示例如下:
{
"routes": [
{
"path": "/",
"source": "pages/Home/index",
"window": {
"barButtonTheme": "default"
}
},
{
"path": "/about",
"source": "pages/About/index",
"window": {
"barButtonTheme": "light"
}
}
],
"window": {
"defaultTitle": "Rax App 1.0",
}
}
编译后,pages/Home/index.json
中将包含 "barButtonTheme": "default"
的配置,pages/About/index.json
中将包含 "barButtonTheme": "light"
的配置。