123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="bannerItemBox">
- <el-carousel height="226px">
- <el-carousel-item :key="1">
- <img src="@/assets/template/component/banner5.png" />
- </el-carousel-item>
- <el-carousel-item :key="2">
- <img src="@/assets/template/component/banner4.png" />
- </el-carousel-item>
- </el-carousel>
- </div>
- </template>
- <script>
- export default {
- props: {
-
- },
- data() {
- return {
-
- };
- },
- methods: {
-
- },
- mounted() {
- },
- };
- </script>
- <style scoped lang="less">
- .bannerItemBox {
- width: 100%;
- img {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|