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