carousel-banner.vue 275 B

1234567891011121314151617181920
  1. <template>
  2. <uv-swiper :list="images" :interval="10000" :height="90" />
  3. </template>
  4. <script>
  5. export default {
  6. name: "carousel-banner",
  7. data() {
  8. return {
  9. images: [
  10. '/static/home/carousel01.png'
  11. ]
  12. }
  13. }
  14. }
  15. </script>
  16. <style scoped>
  17. </style>