index.vue 231 B

1234567891011
  1. <script setup lang="ts">
  2. import { ref } from 'vue'
  3. const BASE_URL = import.meta.env.VITE_BASE_URL
  4. const src = ref(BASE_URL + '/doc.html')
  5. </script>
  6. <template>
  7. <ContentWrap>
  8. <IFrame :src="src" />
  9. </ContentWrap>
  10. </template>