personalCenter.vue 369 B

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