1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <template>
| <div style="width: 100%;height:100%;text-align: center;">
| <el-carousel :height="height+'px'" :trigger="option.attribute.trigger">
| <el-carousel-item v-for="item in option.attribute.imgUrls" :key="item">
| <el-image style="width: 100%; height: 100%" :src="item" :fit="option.attribute.fit"/>
| </el-carousel-item>
| </el-carousel>
| </div>
| </template>
|
| <script>
| export default {
| name: "cpt-carousel",
| props:{
| height:{type:Number,default:168},
| option:Object
| }
| }
| </script>
|
| <style scoped>
| </style>
|
|