index.vue 242 B

123456789101112131415161718
  1. <template>
  2. <view class="container"></view>
  3. </template>
  4. <script setup>
  5. import { onLoad } from '@dcloudio/uni-app'
  6. onLoad(() => {
  7. uni.reLaunch({
  8. url: '/pages/home/home'
  9. })
  10. })
  11. </script>
  12. <style lang="scss" scoped>
  13. .container {
  14. }
  15. </style>