xiangjie.vue 233 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script setup>
  6. import {
  7. reactive,
  8. ref,
  9. onMounted
  10. } from 'vue';
  11. const goXiangjie = () => {
  12. }
  13. const audioInfo = ref(null)
  14. onMounted(() => {
  15. })
  16. </script>
  17. <style>
  18. </style>