TopTen.vue 647 B

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