mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-21 02:56:38 +08:00
12 lines
204 B
Vue
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>
|