13 lines
332 B
Vue
Raw Normal View History

<template>
<doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
2024-05-04 21:51:06 +08:00
<ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0">
<IFrame :src="src" />
</ContentWrap>
</template>
2023-06-21 19:35:11 +08:00
<script lang="ts" setup>
2023-06-21 19:14:34 +08:00
defineOptions({ name: 'GoView' })
const src = ref(import.meta.env.VITE_GOVIEW_URL)
</script>