我是靠谱客的博主 奋斗未来,最近开发中收集的这篇文章主要介绍vue3 + vite SvgIcon组件封装,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、安装依赖vite-plugin-svg-icons

npm i vite-plugin-svg-icons-D
在这里插入图片描述

2、vite.config.ts添加配置

  1. 引入模块
    import { createSvgIconsPlugin } from ‘vite-plugin-svg-icons’在这里插入图片描述
  2. 修改插件配置
      createSvgIconsPlugin({
        // 指定需要缓存的图标文件夹
        iconDirs: [path.resolve(__dirname, './src/assets/svgIcon')],
        // 指定symbolId格式
        symbolId: 'icon-[dir]-[name]'
      })

iconDirs路径为svg图标文件所在目录。
在这里插入图片描述

3、添加ts支持。tsconfig.json中修改如下

"types": ["vite-plugin-svg-icons/client"],
在这里插入图片描述

4、在 src/main.ts 内引入注册脚本

import 'virtual:svg-icons-register'

在这里插入图片描述

5、添加svg-icon组件并注册到全局
<template>
  <svg aria-hidden="true" class="svg-icon">
    <use :xlink:href="symbolId" :fill="color" />
  </svg>
</template>

<script lang="ts" setup>
import { computed } from 'vue'
const props = defineProps({
  // icon path name
  name: {
    type: String,
    default: '',
    required: true
  },
  prefix: {
    type: String,
    default: 'icon'
  },
  color: {
    type: String,
    default: '#373C43'
  }
})

const symbolId = computed(() => `#${props.prefix}-${props.name}`)
</script>

<style lang="scss" scoped>
.svg-icon {
  width: 16px;
  height: 16px;
  color: $light-font-default-color;
  fill: currentColor;
}
</style>

全局注册组件
在这里插入图片描述

组件index.ts
在这里插入图片描述
main.ts中
在这里插入图片描述

6、使用和效果

在这里插入图片描述
页面预览:

在这里插入图片描述

最后

以上就是奋斗未来为你收集整理的vue3 + vite SvgIcon组件封装的全部内容,希望文章能够帮你解决vue3 + vite SvgIcon组件封装所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部