You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
504 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";
@import "./tm-vuetify/mian.min.css";
@import "./tm-vuetify/scss/theme.css";
.u-tabbar__content{
height: 166rpx;
}
.u-border-top{
border: none!important;
}
</style>