- SvgIcon.vue 组件
// SvgIcon.vue
<template>
<svg
:class="['svg-icon', className]"
:style="svgStyle"
:width="size"
:height="size"
aria-hidden="true"
>
<use :href="symbolId" />
</svg>
</template>
<script setup lang="ts">
import {
computed } from 'vue'
interface Props {
// symbol的名字
name: string
// 图标大小
size?: string | number
// 自定义类名
className?: string
// 颜色
color?: string
// 旋转角度
rotate?: number
// 是否旋转

最低0.47元/天 解锁文章
3226

被折叠的 条评论
为什么被折叠?



