soybean-admin/src/views/document/vue/index.vue
Soybean 8f6d6ce3cb refactor(styles): 代码格式
ISSUES CLOSED: \
2022-05-28 12:30:17 +08:00

12 lines
204 B
Vue

<template>
<div class="h-full">
<iframe class="wh-full" :src="src"></iframe>
</div>
</template>
<script setup lang="ts">
const src = 'https://v3.cn.vuejs.org/';
</script>
<style scoped></style>