index.vue 375 B

123456789101112131415161718192021222324
  1. <template>
  2. <span class="iii-icon">
  3. <img :src="require(`./images/${type}.png`)" alt="">
  4. </span>
  5. </template>
  6. <script setup>
  7. defineProps({ type: { default: '' } })
  8. </script>
  9. <style scoped lang="scss">
  10. .iii-icon {
  11. width: 1em;
  12. height: 1em;
  13. display: inline-block;
  14. img {
  15. width: 100%;
  16. height: 100%;
  17. display: block;
  18. object-fit: cover;
  19. }
  20. }
  21. </style>