16 lines
273 B
Vue
16 lines
273 B
Vue
|
<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>
|