34 lines
611 B
Vue
34 lines
611 B
Vue
|
<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%;
|
||
|
}
|
||
|
.uav_box {
|
||
|
// border-radius: 8px;
|
||
|
// background: rgba(0, 0, 0, 0.5);
|
||
|
// border: 1px solid rgba(0, 255, 255, 0.5);
|
||
|
// padding: 15px 10px;
|
||
|
}
|
||
|
</style>
|