mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-24 16:21:53 +08:00
12 lines
239 B
Vue
12 lines
239 B
Vue
|
<script setup lang="ts">
|
||
|
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>
|