1234567891011121314151617181920212223 |
- <template>
- <view class="container">
- 模板
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
-
- onLoad(() => {
- console.log('onLoad')
- })
- </script>
- <style lang="scss" scoped>
- .container {
- height: 100vh;
- width: 100vw;
- background-color: $uni-bg-color;
- padding: 0 20rpx;
- }
- </style>
|