Files
dvcp_v2_webapp/packages/processManagement/approvalManage/components/svgIcon.vue
aixianling a8dff862d2 初始化
2021-12-14 18:36:19 +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>