collect.vue 351 B

1234567891011121314151617181920212223
  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. console.log('onLoad')
  11. })
  12. </script>
  13. <style lang="scss" scoped>
  14. .container {
  15. height: 100vh;
  16. width: 100vw;
  17. background-color: $uni-bg-color;
  18. padding: 0 20rpx;
  19. }
  20. </style>