| 1234567891011121314151617 |
- <template>
- <view>
- 编辑日报
- </view>
- </template>
- <script setup lang="ts">
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app';
- onLoad((option) => {
- console.log('option', option);
- })
- </script>
- <style lang="scss">
- </style>
|