feat:集成积木仪表盘
parent
ce1066d6e3
commit
dcecde0967
|
@ -0,0 +1,28 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
import { Page } from '@vben/common-ui';
|
||||||
|
import { useAccessStore } from '@vben/stores';
|
||||||
|
|
||||||
|
import { DocAlert } from '#/components/doc-alert';
|
||||||
|
import { IFrame } from '#/components/iframe';
|
||||||
|
|
||||||
|
defineOptions({ name: 'JimuBI' });
|
||||||
|
const accessStore = useAccessStore();
|
||||||
|
|
||||||
|
const src = ref(
|
||||||
|
`${import.meta.env.VITE_BASE_URL}/drag/list?token=${
|
||||||
|
accessStore.refreshToken
|
||||||
|
}`,
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Page auto-content-height>
|
||||||
|
<template #doc>
|
||||||
|
<DocAlert title="大屏设计器" url="https://doc.iocoder.cn/screen/" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<IFrame :src="src" />
|
||||||
|
</Page>
|
||||||
|
</template>
|
Loading…
Reference in New Issue