SVG 2删除了对xlink命名空间的需要,所以不xlink:href应该使用href。

https://cloud.tencent.com/developer/section/1424047
This commit is contained in:
MaYuanhai 2019-10-10 11:05:28 +08:00 committed by GitHub
parent 197948dc44
commit 3768696e2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<template>
<div v-if="isExternal" :style="styleExternalIcon" class="svg-external-icon svg-icon" v-on="$listeners" />
<svg v-else :class="svgClass" aria-hidden="true" v-on="$listeners">
<use :xlink:href="iconName" />
<use :href="iconName" />
</svg>
</template>