Files
fengjie-datascreen/src/views/testing/components/box-3.vue
2024-12-19 11:48:16 +08:00

25 lines
507 B
Vue

<template>
<!-- 视频 -->
<div class="box-3-content">
<navLeft></navLeft>
<!-- 视频 -->
<monitor></monitor>
</div>
</template>
<script setup>
import navLeft from '@/components/navLeft/index.vue'
import monitor from '@/components/monitor/index.vue'
</script>
<style lang="scss" scoped>
.box-3-content{
width:vw(2353);
height:vh(964);
// background-image: url('/src/assets/images/monotir-bg-1.png');
background-size: 100% 100%;
margin-top: vh(120);
display: flex;
}
</style>