2022-11-17 16:02:24 +08:00

12 lines
231 B
Vue

<script setup lang="ts">
import { ref } from 'vue'
const BASE_URL = import.meta.env.VITE_BASE_URL
const src = ref(BASE_URL + '/doc.html')
</script>
<template>
<ContentWrap>
<IFrame :src="src" />
</ContentWrap>
</template>