全局隐藏:
const App = createApp({
onLaunch: function() {
Taro.hideHomeButton()
}
})
指定页面隐藏:
xxx.vue
onShow() {
Taro.hideHomeButton()
},
全局隐藏:
const App = createApp({
onLaunch: function() {
Taro.hideHomeButton()
}
})
指定页面隐藏:
xxx.vue
onShow() {
Taro.hideHomeButton()
},