gaosp
2024-01-19 db79f0019d3f6ed98e9983de6b91d08212683c86
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>