mirror of
https://github.com/PanJiaChen/electron-vue-admin.git
synced 2025-04-05 05:32:44 +08:00
43 lines
660 B
Vue
43 lines
660 B
Vue
<template>
|
|
<svg :class="svgClass" aria-hidden="true">
|
|
<use :xlink:href="iconName"></use>
|
|
</svg>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'svg-icon',
|
|
props: {
|
|
iconClass: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
className: {
|
|
type: String
|
|
}
|
|
},
|
|
computed: {
|
|
iconName() {
|
|
return `#icon-${this.iconClass}`
|
|
},
|
|
svgClass() {
|
|
if (this.className) {
|
|
return 'svg-icon ' + this.className
|
|
} else {
|
|
return 'svg-icon'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.svg-icon {
|
|
width: 1em;
|
|
height: 1em;
|
|
vertical-align: -0.15em;
|
|
fill: currentColor;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|