cczg-lottery-activity/App.vue

28 lines
536 B
Vue
Raw Permalink Normal View History

2024-05-30 11:04:54 +08:00
<style lang="scss">
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "@/uni_modules/uview-ui/index.scss";
</style>
<script>
import { initAuth } from './util/auth'
export default {
onLaunch: function() {
console.log('App Launch')
initAuth()
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
uni-page-body,
html,
body {
height: 100%;
}
</style>