无人机系统

This commit is contained in:
Teo
2025-05-14 18:31:25 +08:00
parent c92f2091d9
commit 3e67c83ced
232 changed files with 16610 additions and 7 deletions

View File

@ -0,0 +1,27 @@
<template>
<div class="home-container" ref="monitorLiveVideo">
<homeLeft></homeLeft>
<homeRight></homeRight>
</div>
</template>
<script>
import homeLeft from "./homeLeft.vue";
import homeRight from "./homeRight.vue";
export default {
components: { homeLeft, homeRight },
data() {
return {};
},
methods: {},
created() { },
mounted() { },
};
</script>
<style lang="scss" scoped>
.home-container {
height: 100%;
width: 100%;
}
</style>