28 lines
467 B
Vue
28 lines
467 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%;
|
|
}
|
|
</style>
|