index.vue 332 B

123456789101112
  1. <template>
  2. <doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
  3. <ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0">
  4. <IFrame :src="src" />
  5. </ContentWrap>
  6. </template>
  7. <script lang="ts" setup>
  8. defineOptions({ name: 'GoView' })
  9. const src = ref(import.meta.env.VITE_GOVIEW_URL)
  10. </script>