| 12345678910111213141516171819 |
- <template>
- <view class="container"></view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
- onLoad(() => {
- uni.navigateTo({
- url: '/pages/home/home'
- })
- })
- </script>
- <style lang="scss" scoped>
- .container {
- }
- </style>
|