无人机系统
This commit is contained in:
27
src/views/drone/components/home/index.vue
Normal file
27
src/views/drone/components/home/index.vue
Normal 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>
|
Reference in New Issue
Block a user