gaosp
2024-01-17 89d83a582dda4d8afb8f099905fa2a3b5a6cb08b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
  <img :src="iconUrl" class="icon-img"/>
</template>
 
<script>
  export default {
    name: 'img-icon',
    props: {
      iconUrl: {
        type: String
      }
    }
  }
</script>
 
<style scoped>
  .icon-img{
    width: 22px;
  }
</style>