2022-10-17 10:13:22 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="monitor">
|
|
|
|
|
<!-- <div class="video" v-for="i in 12" :key="i"></div> -->
|
2022-10-19 14:06:29 +08:00
|
|
|
<div class="left">
|
|
|
|
|
<Left />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="right">
|
|
|
|
|
<Right />
|
|
|
|
|
</div>
|
2022-10-17 10:13:22 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-10-19 14:06:29 +08:00
|
|
|
import Left from "./left.vue";
|
|
|
|
|
import Right from "./right.vue"
|
|
|
|
|
export default {
|
|
|
|
|
components: { Left,Right},
|
|
|
|
|
}
|
2022-10-17 10:13:22 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.monitor {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
2022-10-19 14:06:29 +08:00
|
|
|
.left{
|
|
|
|
|
width: 15%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding-right: 2%;
|
|
|
|
|
}
|
|
|
|
|
.right{
|
|
|
|
|
width: 85%;
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|