This commit is contained in:
huzhushan 2021-04-28 10:33:25 +08:00
parent 0f77286454
commit 7a809fa35b

View File

@ -18,7 +18,7 @@
* @version:
* @Date: 2021-04-20 11:06:21
* @LastEditors: huzhushan@126.com
* @LastEditTime: 2021-04-21 12:45:50
* @LastEditTime: 2021-04-28 10:32:28
* @Author: huzhushan@126.com
* @HomePage: https://huzhushan.gitee.io/vue3-element-admin
* @Github: https://github.com/huzhushan/vue3-element-admin
@ -37,17 +37,13 @@ import { defineComponent, computed } from 'vue'
export default defineComponent({
name: 'SvgIcon',
props: {
prefix: {
type: String,
default: 'icon',
},
name: {
type: String,
required: true,
},
},
setup(props) {
const symbolId = computed(() => `#${props.prefix}-${props.name}`)
const symbolId = computed(() => `#icon-${props.name}`)
return { symbolId }
},
})