TopTen.vue 494 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="topTenTitle">
  3. <div class="inner">
  4. <a href="http://www.baidu.com">
  5. <img :src="imgurl.thumb" alt="">
  6. </a>
  7. </div>
  8. </div>
  9. </template>
  10. <script setup>
  11. const props = defineProps({
  12. imgurl: String
  13. });
  14. </script>
  15. <style lang="less">
  16. // 十强称号logo
  17. .topTenTitle {
  18. width: 100%;
  19. height: 90px;
  20. margin: 60px 0 60px;
  21. img {
  22. width: 1200px;
  23. height: 90px;
  24. }
  25. }
  26. </style>