mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-08 08:22:41 +08:00
17 lines
471 B
Vue
17 lines
471 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>
|
|
import { getAccessToken, getRefreshToken } from '@/utils/auth'
|
|
|
|
defineOptions({ name: 'GoView' })
|
|
|
|
const src = ref(
|
|
`${import.meta.env.VITE_GOVIEW_URL}?accessToken=${getAccessToken()}&refreshToken=${getRefreshToken()}`
|
|
)
|
|
</script>
|