mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-24 12:26:38 +08:00
14 lines
237 B
Vue
14 lines
237 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://v3.cn.vuejs.org/');
|
|
</script>
|
|
|
|
<style scoped></style>
|