11. Configuration items for applets

window navigation configuration

Global configuration is carried out through app.json
"window": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "Weixin", "navigationBarTextStyle": "black" }, local configuration is through the page xx.json configuration { "navigationBarTitleText": "list page", "usingComponents": {} }









When the local configuration is not configured, the local configuration is used. When the local configuration is configured, the local configuration is preferred

Refer to the official website: https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/page.html

Guess you like

Origin blog.csdn.net/rotating_windmill/article/details/132392223