2023-02-11 00:44:00 +08:00
|
|
|
<template>
|
|
|
|
<ContentWrap>
|
2024-05-04 21:51:06 +08:00
|
|
|
<doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
|
|
|
|
|
2024-08-21 13:29:15 +08:00
|
|
|
<ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0">
|
2023-02-11 00:44:00 +08:00
|
|
|
<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' })
|
|
|
|
|
2023-02-11 00:44:00 +08:00
|
|
|
const src = 'http://127.0.0.1:3000'
|
|
|
|
</script>
|