2022-07-18 19:06:37 +08:00
|
|
|
<script setup lang="ts">
|
2022-11-17 17:11:24 +08:00
|
|
|
import { IFrame } from '@/components/IFrame'
|
2022-07-18 19:06:37 +08:00
|
|
|
import { ref } from 'vue'
|
|
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
|
|
const src = ref(BASE_URL + '/druid/index.html')
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<ContentWrap>
|
|
|
|
<IFrame :src="src" />
|
|
|
|
</ContentWrap>
|
|
|
|
</template>
|