| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="content">
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- uni.redirectTo({
- url: "/pages/home/home",
- });
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- </style>
|