Taro小程序隐藏返回首页按钮(左上角小房子)
程序员文章站
2022-03-03 22:30:31
...
全局隐藏:
const App = createApp({
onLaunch: function() {
Taro.hideHomeButton()
}
})
指定页面隐藏:
xxx.vue
onShow() {
Taro.hideHomeButton()
},
上一篇: iOS 左上角的返回按钮的几种设置