<!--
|
* @Author : yuan
|
* @Date : 2026-01-06 16:35:50
|
* @LastEditors : yuan
|
* @LastEditTime : 2026-01-07 15:20:14
|
* @FilePath : \applications\drone-command\src\views\dataCockpit\index.vue
|
* @Description :
|
* Copyright 2026 OBKoro1, All Rights Reserved.
|
* 2026-01-06 16:35:50
|
-->
|
<template>
|
<div class="page-container">
|
<MapContainer />
|
<LeftContainer />
|
<RightContainer />
|
<CenterContainer />
|
</div>
|
</template>
|
|
<script setup>
|
import MapContainer from './components/MapContainer.vue';
|
import LeftContainer from './components/LeftContainer.vue';
|
import RightContainer from './components/RightContainer.vue';
|
import CenterContainer from './components/CenterContainer.vue';
|
</script>
|
|
<style scoped lang="scss">
|
.page-container {
|
position: relative;
|
width: 100%;
|
height: 100%;
|
}
|
</style>
|