Files
dvcp_v2_webapp/packages/work/processManagement/approvalManage/components/svgIcon.vue
2022-05-10 20:02:37 +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>