1.vue 524 B

123456789101112131415161718
  1. <template>
  2. <a :href="adImg.ad_url" v-if="adImg.image_url == null" target="_blank" :title="adImg.introduce">
  3. <img :src="adImg.thumb" :alt="adImg.introduce" data-tag="imgurl.ad_tag" :id="adImg.ad_tag">
  4. </a>
  5. <a :href="adImg.image_url" v-else :title="adImg.introduce">
  6. <img :src="adImg.image_src" :alt="adImg.introduce" data-tag="imgurl.ad_tag" :id="adImg.ad_tag">
  7. </a>
  8. </template>
  9. <script setup>
  10. const props = defineProps({
  11. adImg: Object,
  12. });
  13. </script>
  14. <style lang="less" scoped>
  15. </style>