| | |
| | | <template> |
| | | <div :style="'width:'+fontSize+';height:'+fontSize+';font-size: '+fontSize+';'+style" v-html="svgHtml"></div> |
| | | <div v-show="name" :title="title" class="iconShow" :name="name" :style="'width:'+fontSize+';height:'+fontSize+';font-size: '+fontSize+';'+style" v-html="svgHtml"></div> |
| | | </template> |
| | | |
| | | <script> |
| | |
| | | export default { |
| | | name: "iconShow", |
| | | props: { |
| | | title:{ |
| | | type: String, |
| | | default: '' |
| | | }, |
| | | name: { |
| | | type: String, |
| | | default: '' |
| | |
| | | svg{ |
| | | font-size: inherit; |
| | | height: 100%; |
| | | width:auto; |
| | | width:100%; |
| | | } |
| | | } |
| | | </style> |