index.vue 213 B

123456789
  1. <template>
  2. <i-frame v-model:src="url"></i-frame>
  3. </template>
  4. <script setup>
  5. import iFrame from '/src/components/iFrame'
  6. const url = ref(import.meta.env.VITE_APP_BASE_API + "/swagger-ui/index.html")
  7. </script>