本文最后更新于 296 天前,如有失效请评论区留言。
一下是一个基于 vue3、vite、ts 封装的一个 svg 组件
插件安装
pnpm add vite-plugin-svg-icons -D
插件配置
svgIcons.ts
- iconDirs 配置 icon 图标的目录
- symbolId 指定 symbolId 格式
import { createSvgIconsPlugin } from "vite-plugin-svg-icons"
import path from 'path';
export function configSvgIconsPlugin(isBuild: boolean) {
return createSvgIconsPlugin({
iconDirs: [path.resolve(process.cwd(), "src/assets/icons")],
symbolId: "icon-[dir]-[name]",
svgoOptions: isBuild
})
}
组件编写
组件目录,在 src/components 下新建 SvgIcon/index.vue
这里使用了 autoimport 插件,如果没有使用插件,则需要导入组件使用到的相关函数
<template>
<svg aria-hidden="true" class="svg-icon-spin" :class="calsses">
<use :xlink:href="symbolId" :fill="color" />
</svg>
</template>
<script lang="ts" setup>
const props = defineProps({
prefix: {
type: String,
default: 'icon'
},
name: {
type: String,
required: true
},
color: {
type: String,
default: '#333'
},
size: {
type: String,
default: '24px'
}
})
const symbolId = computed(() => `#${props.prefix}-${props.name}`)
const calsses = computed(() => {
return {
[`sdms-size-specific`]: props.size
}
})
const fontSize = reactive({ specific: props.size })
</script>
<style lang="less" scoped>
.svg-icon-spin {
width: v-bind('fontSize.specific');
height: v-bind('fontSize.specific');
fill: v-bind(color);
vertical-align: middle;
color: v-bind(color);
&.sdms-size-specific {
font-size: v-bind('fontSize.specific');
height: v-bind('fontSize.specific');
}
}
</style>
注册 svg
在 main.js 中注册 svg
import 'virtual:svg-icons-register';
通过插件 vite-plugin-svg-icons,会在开发服务器启动时将指定目录下所有的SVG文件自动进行加载和注册。可以直接在组件中引用而不用每次都提供完整的SVG图标路径
组件引入
如果使用自动导入的插件,则可以直接在项目中使用
<template>
<SvgIcon name="svg-github" size="24px" color="#999999" />
</template>
上述示例并非完全直接可以使用,需要配置好相关环境,例如还需要安装 less、autoimport 等