12345678910111213141516171819202122 |
- <template>
- <view class="container">
- 我的
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
-
- onLoad(() => {
- })
- </script>
- <style lang="scss" scoped>
- .container {
- height: 100vh;
- width: 100vw;
- background-color: #f7f7f7;
- padding: 0 20px;
- }
- </style>
|