mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
12 lines
209 B
Vue
12 lines
209 B
Vue
<template>
|
|
<div class="h-full">
|
|
<iframe class="wh-full" :src="src"></iframe>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const src = 'https://staging-cn.vuejs.org/';
|
|
</script>
|
|
|
|
<style scoped></style>
|