init:first commit of plus-ui
This commit is contained in:
33
src/views/drone/components/home/index.vue
Normal file
33
src/views/drone/components/home/index.vue
Normal file
@ -0,0 +1,33 @@
|
||||
<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>
|
Reference in New Issue
Block a user