mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-24 08:11:55 +08:00
13 lines
297 B
Vue
13 lines
297 B
Vue
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|
|
<script setup lang="ts" name="Druid">
|
|
import { ref } from 'vue'
|
|
import { IFrame } from '@/components/IFrame'
|
|
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
const src = ref(BASE_URL + '/druid/index.html')
|
|
</script>
|