|
|
@@ -1,11 +1,18 @@
|
|
|
<template>
|
|
|
- <div class="frame" v-loading="loading">
|
|
|
- <iframe :src="frameSrc" class="frame-iframe" ref="frameRef"></iframe>
|
|
|
- </div>
|
|
|
+ <VerticalFlexLayout>
|
|
|
+ <template #static>
|
|
|
+ <Breadcrumb />
|
|
|
+ </template>
|
|
|
+ <div class="frame" v-loading="loading">
|
|
|
+ <iframe :src="frameSrc" class="frame-iframe" ref="frameRef"></iframe>
|
|
|
+ </div>
|
|
|
+ </VerticalFlexLayout>
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
import { ref, unref, onMounted, nextTick } from 'vue';
|
|
|
import { useRoute } from 'vue-router';
|
|
|
+ import VerticalFlexLayout from '@/components/VerticalFlexLayout.vue';
|
|
|
+ import Breadcrumb from '@/components/Breadcrumb.vue';
|
|
|
|
|
|
const currentRoute = useRoute();
|
|
|
const loading = ref(false);
|