mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-11 01:42:46 +08:00
13 lines
276 B
Vue
13 lines
276 B
Vue
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { IFrame } from '@/components/IFrame'
|
|
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
const src = ref(BASE_URL + '/doc.html')
|
|
</script>
|