保誠-保戶業務員媒合平台
Mila
2021-10-19 1fcd604ad844352dd350ecda3ee870d69e3d85df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<template>
<div>
    <el-carousel
        height="200px"
        :autoplay="true"
        indicator-position="outside"
        arrow="never"
        trigger="click"
    >
        <el-carousel-item
            v-for="(item, index) in 3"
            :key="index"
        >
            <h3>{{ item }}</h3>
        </el-carousel-item>
    </el-carousel>
</div>
</template>
 
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator';
 
@Component
export default class UiCarousel extends Vue {
 
}
</script>
 
<style lang="scss" scoped>
.el-carousel__item {
    background-color: #d3dce6;
}
</style>