uni-Identify-quality/App.vue
2023-09-19 11:48:23 +08:00

27 lines
427 B
Vue

<script>
import tabBar from "./util/tabbar";
export default {
onLaunch: function() {
uni.hideTabBar();
uni.setStorageSync("tabBar", tabBar);
},
onShow: function() {
console.log("App Show");
},
onHide: function() {
console.log("App Hide");
}
};
</script>
<style lang="scss">
@import "uview-ui/index.scss";
.u-tabbar__content{
height: 166rpx;
}
.u-border-top{
border: none!important;
}
</style>