personalCenter.vue 321 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="container">
  3. 我的
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue'
  8. import { onLoad } from '@dcloudio/uni-app'
  9. onLoad(() => {
  10. })
  11. </script>
  12. <style lang="scss" scoped>
  13. .container {
  14. height: 100vh;
  15. width: 100vw;
  16. background-color: #f7f7f7;
  17. padding: 0 20px;
  18. }
  19. </style>