Files
ruoyi-plus-soybean/src/views/document/project/index.vue
2023-09-06 01:07:29 +08:00

14 lines
245 B
Vue

<template>
<div class="h-full">
<iframe class="wh-full" :src="src"></iframe>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue';
const src = ref('https://admin-docs.soybeanjs.cn/');
</script>
<style scoped></style>