| 123456789101112131415161718192021222324252627282930313233 |
- <script setup lang="ts">
- import { onHide, onLaunch, onShow } from '@dcloudio/uni-app'
- import { usePageAuth } from '@/hooks/usePageAuth'
- import 'abortcontroller-polyfill/dist/abortcontroller-polyfill-only'
- usePageAuth()
- onLaunch(() => {
- console.log('App Launch')
- })
- onShow(() => {
- console.log('App Show')
- })
- onHide(() => {
- console.log('App Hide')
- })
- </script>
- <style lang="scss">
- swiper,
- scroll-view {
- flex: 1;
- height: 100%;
- overflow: hidden;
- }
- image {
- width: 100%;
- height: 100%;
- vertical-align: middle;
- }
- </style>
|