mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 05:50:18 +08:00
11 lines
194 B
Vue
11 lines
194 B
Vue
<template>
|
|
<div>
|
|
<iframe class="w-full h-full" :src="src"></iframe>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const src = 'https://v3.cn.vuejs.org/';
|
|
</script>
|
|
<style scoped></style>
|