2025-06-11 14:53:27 +08:00
|
|
|
<script setup>
|
|
|
|
import {defineAsyncComponent} from "vue";
|
|
|
|
|
2025-06-13 17:53:39 +08:00
|
|
|
import analyseEditor from './components/analyse/analyseMetricEditorEvent.vue';
|
|
|
|
|
2025-06-11 14:53:27 +08:00
|
|
|
const analyseMainIndex = defineAsyncComponent(() => import('./layout/analyseMainIndex.vue'))
|
|
|
|
|
2025-06-13 17:53:39 +08:00
|
|
|
const analyseCustomInfo = {
|
|
|
|
analyseName: "事件分析",
|
|
|
|
leftPaneInfo: {
|
|
|
|
paneComponent: analyseEditor,
|
|
|
|
},
|
|
|
|
rightPaneInfo: {
|
|
|
|
paneComponent: analyseEditor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-06-11 14:53:27 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2025-06-13 17:53:39 +08:00
|
|
|
<analyseMainIndex :analyseCustomInfo="analyseCustomInfo"/>
|
2025-06-11 14:53:27 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|