| 12345678910111213141516171819202122 |
- <script setup lang="ts">
- 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>
- page{
- height: 100%;
- box-sizing: border-box;
- }
- view, label {
- box-sizing: border-box;
- }
- </style>
|