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