27 lines
471 B
Vue
27 lines
471 B
Vue
|
|
<template>
|
||
|
|
<div class="monitor">
|
||
|
|
<!-- <div class="video" v-for="i in 12" :key="i"></div> -->
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.monitor {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background: url(../assets/temp/8.png) no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
.video {
|
||
|
|
width: 24.5%;
|
||
|
|
height: 32%;
|
||
|
|
border: 1px solid skyblue;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|