| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="home">
- 首页
- </view>
- </template>
- <script lang="ts" setup>
- import { reactive } from 'vue';
- import { onShow } from '@dcloudio/uni-app';
- interface State {
- };
- const state: State = reactive({
- });
- onShow(() => {
- });
- </script>
- <style lang="scss" scoped>
- .home {
- padding: 0 20rpx;
- }
- </style>
|