vite配置 vue3中怎么使用svg图标

Posted qq_27449993

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vite配置 vue3中怎么使用svg图标相关的知识,希望对你有一定的参考价值。

svg图片在项目中使用的非常广泛,如何在vue3 + vite 中使用svg图标。

vite-plugin-svg-icons

  • 预加载 在项目运行时就生成所有图标,只需操作一次 dom
  • 高性能 内置缓存,仅当文件被修改时才会重新生成
yarn add vite-plugin-svg-icons -D
# or
npm i vite-plugin-svg-icons -D
# or
pnpm install vite-plugin-svg-icons -D

再vite.config.ts里面配置插件

导入

import createSvgIconsPlugin  from 'vite-plugin-svg-icons';

然后再plugins中配置

 plugins: [vue(),createSvgIconsPlugin(
      // 指定需要缓存的图标文件夹
    iconDirs: [path.resolve(process.cwd(), 'src/assets/svg')],
      // 指定symbolId格式
      symbolId: 'icon-[dir]-[name]',
    ),],

然后再main.ts中引入

import 'virtual:svg-icons-register'

再svgIcon.vue中

<template>
    <svg aria-hidden="true" class="svg-icon" :width="props.size" :height="props.size">
      <use :xlink:href="symbolId" rel="external nofollow"  :fill="props.color" />
    </svg>
  </template>
  
  <script setup lang="ts">
  import  computed  from 'vue'
  const props = defineProps(
    prefix: 
      type: String,
      default: 'icon'
    ,
    name: 
      type: String,
      required: true
    ,
    color: 
      type: String,
      default: '#333'
    ,
    size: 
      type: String,
      default: '1em'
    
  )
  const symbolId = computed(() => `#$props.prefix-$props.name`)
  </script>

再main.ts中全局注册

import svgIcon from "@/components/SvgIcon/index.vue";
app.component('svg-icon', svgIcon)

 页面中使用

<template>
    <svg-icon v-if="props.icon" :name="props.icon" />
    <span v-if="props.title" slot='title'> props.title </span>
</template>

<script setup lang="ts">
const props = defineProps(
    icon: 
        type: String,
        default: ''
    ,
    title: 
        type: String,
        default: ''
    
)
</script>

以上是关于vite配置 vue3中怎么使用svg图标的主要内容,如果未能解决你的问题,请参考以下文章

vite配置 vue3中怎么使用svg图标

前端vue3+typescript搭建vite项目(初识vite+项目配置完善+屏幕适配)

前端vue3+typescript搭建vite项目(初识vite+项目配置完善+屏幕适配)

vite+vue3 使用svg icon(包括element-plus icon)

vue3+vite+ts 配置别名@报错

vite vue引入svg图标及封装 (轻松上手)