edit.vue 252 B

1234567891011121314151617
  1. <template>
  2. <view>
  3. 编辑日报
  4. </view>
  5. </template>
  6. <script setup lang="ts">
  7. import { ref } from 'vue'
  8. import { onLoad } from '@dcloudio/uni-app';
  9. onLoad((option) => {
  10. console.log('option', option);
  11. })
  12. </script>
  13. <style lang="scss">
  14. </style>