22 lines
315 B
Vue
22 lines
315 B
Vue
<script setup>
|
|
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app'
|
|
|
|
onLaunch(() => {
|
|
console.log('App Launch')
|
|
})
|
|
|
|
onShow(() => {
|
|
console.log('App Show')
|
|
})
|
|
|
|
onHide(() => {
|
|
console.log('App Hide')
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import '@/styles/common.scss';
|
|
</style>
|
|
|