Files
dvcp_v2_webapp/project/xiushan/apps/processManagement/approvalManage/components/svgIcon.vue
yanran200730 7c413fa9b2 2
2022-04-06 10:19:55 +08:00

25 lines
382 B
Vue

<template>
<svg class="icon" aria-hidden="true" v-bind="$attrs">
<use :xlink:href="iconName"></use>
</svg>
</template>
<script>
export default {
name: "svgIcon",
props: {
className: {
type: String,
}
},
computed: {
iconName() {
return `#${this.className}`
}
}
}
</script>
<style lang="scss" scoped>
</style>