soybean-admin/src/views/document/vite/index.vue
2022-09-20 12:09:15 +08:00

14 lines
235 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://cn.vitejs.dev/');
</script>
<style scoped></style>