init:first commit of plus-ui

This commit is contained in:
Teo
2025-05-21 11:24:53 +08:00
commit 95e38df6a5
2219 changed files with 2478311 additions and 0 deletions

View 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>