mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-12 18:32:45 +08:00
12 lines
231 B
Vue
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>
|