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.

21 lines
342 B
Vue

1 year ago
<script>
1 year ago
import tabBar from './util/tabbar'
1 year ago
export default {
onLaunch: function() {
1 year ago
uni.hideTabBar()
uni.setStorageSync('tabBar', tabBar)
1 year ago
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
1 year ago
<style lang="scss">
@import "uview-ui/index.scss";
1 year ago
</style>