index.vue 273 B

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