mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-19 01:56:38 +08:00
14 lines
235 B
Vue
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>
|