<template>
<view>
<web-view src="https://www.baidu.com/"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
navigatorTitle:""
};
},
// 导航栏标题不显示
// onLoad(event) {
// if(event.title){
// this.navigatorTitle=event.title
// uni.setNavigationBarTitle({
// title:this.navigatorTitle
// })
// }
// },
// 导航栏标题不显示
// onReady() {
// if(this.navigatorTitle){
// uni.setNavigationBarTitle({
// title:this.navigatorTitle
// })
// }
// },
// 此种设置字符串可以生效
// onReady() {
// if(this.navigatorTitle){
// uni.setNavigationBarTitle({
// title:"45464646"
// })
// }
// },
}
</script>
<style lang="scss">
</style>
一天天心真大 (作者)
导航栏标题不显示,下图所示
2025-01-14 20:17