uniugm/ui/src/views/bi/analyse/event.vue
2025-06-25 16:04:30 +08:00

26 lines
535 B
Vue

<script setup>
import {defineAsyncComponent} from "vue";
import analyseEditor from './components/analyse/editor/analyseMetricEditorEvent.vue';
const analyseMainIndex = defineAsyncComponent(() => import('./layout/analyseMainIndex.vue'))
const analyseCustomInfo = {
analyseName: "事件分析",
leftPaneInfo: {
paneComponent: analyseEditor,
},
rightPaneInfo: {
paneComponent: analyseEditor,
}
}
</script>
<template>
<analyseMainIndex :analyseCustomInfo="analyseCustomInfo"/>
</template>
<style scoped>
</style>