29 lines
541 B
Vue
29 lines
541 B
Vue
|
<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>
|