Files
tunnel-cloud-web/src/components/content/transducerList/TransducerList.vue
2023-12-08 16:12:55 +08:00

26 lines
566 B
Vue

<template>
<div id="transducer-list">
<transducer-item v-for="(item, key) in 6" :isFirst="key === 0" />
</div>
</template>
<script setup>
import TransducerItem from "./childComps/TransducerItem.vue";
</script>
<style lang="scss" scoped>
#transducer-list {
color: rgb(226, 26, 26);
position: absolute;
top: 744px;
left: 70px;
width: 826px;
height: 928px;
background-image: url(../../../assets/images/transducer/bg.png);
background-position: center center;
background-size: 100%;
background-repeat: no-repeat;
padding: 30px;
}
</style>