index.vue 284 B

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