36 lines
559 B
Vue
Raw Normal View History

2022-10-17 10:13:22 +08:00
<template>
<div class="monitor">
<!-- <div class="video" v-for="i in 12" :key="i"></div> -->
<div class="left">
<Left />
</div>
<div class="right">
<Right />
</div>
2022-10-17 10:13:22 +08:00
</div>
</template>
<script>
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;
.left{
width: 15%;
box-sizing: border-box;
padding-right: 2%;
}
.right{
width: 85%;
2022-10-17 10:13:22 +08:00
}
}
</style>