2.vue 639 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class="bannerItemBox">
  3. <el-carousel height="226px">
  4. <el-carousel-item :key="1">
  5. <img src="@/assets/template/component/banner5.png" />
  6. </el-carousel-item>
  7. <el-carousel-item :key="2">
  8. <img src="@/assets/template/component/banner4.png" />
  9. </el-carousel-item>
  10. </el-carousel>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. props: {
  16. },
  17. data() {
  18. return {
  19. };
  20. },
  21. methods: {
  22. },
  23. mounted() {
  24. },
  25. };
  26. </script>
  27. <style scoped lang="less">
  28. .bannerItemBox {
  29. width: 100%;
  30. img {
  31. width: 100%;
  32. height: 100%;
  33. }
  34. }
  35. </style>