27 lines
471 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>
</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>