uniugm/ui/src/views/bi/analyse/event.vue

16 lines
273 B
Vue
Raw Normal View History

2025-06-11 14:53:27 +08:00
<script setup>
import {defineAsyncComponent} from "vue";
const analyseMainIndex = defineAsyncComponent(() => import('./layout/analyseMainIndex.vue'))
</script>
<template>
<div style="height: 100%">
<analyseMainIndex/>
</div>
</template>
<style scoped>
</style>