yangys
2024-01-13 b8d63989635bc9fb58357f76333796e21409985b
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>