1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="topTenTitle">
- <div class="inner">
- <a href="http://www.baidu.com">
- <img :src="imgurl.thumb" alt="">
- </a>
- </div>
- </div>
- </template>
- <script setup>
- const props = defineProps({
- imgurl: String
- });
- </script>
- <style lang="less">
- // 十强称号logo
- .topTenTitle {
- width: 100%;
- height: 90px;
- margin: 60px 0 60px;
- img {
- width: 1200px;
- height: 90px;
- }
- }
- </style>
|