uniapp隐藏自带的tabBar
场景: 微信小程序在使用自定义tabBar组件时, 隐藏uniapp自带的tabBar
js
<template>
<!-- index页面 -->
</template>
<script setup>
import { onShow } from '@/utils/wxUtils'
onShow(() => {
uni.hideTabBar() // 隐藏自带的tabbar
})
</script>