mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-19 06:42:00 +08:00
13 lines
332 B
Vue
13 lines
332 B
Vue
<template>
|
|
<doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
|
|
|
|
<ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0">
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
defineOptions({ name: 'GoView' })
|
|
|
|
const src = ref(import.meta.env.VITE_GOVIEW_URL)
|
|
</script>
|