26 lines
566 B
Vue
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>
|