51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

分享vue3+vite应用:如何显示SVG图片

分享一个vue3+vite的小应用:如何显示SVG图片。

ite-plugin-svg-icons是一个Vite插件,其作用是将SVG图标文件转换为Vue组件,以便在Vue项目中使用。

使用vite-plugin-svg-icons插件,可以将SVG图标文件导入到项目中,并将其转换为可复用的Vue组件。这样,就可以像使用普通Vue组件一样使用这些SVG图标,包括在模板中直接使用、传递属性、绑定事件等。

该插件还提供了一些额外的功能,如自动按需引入图标、支持图标的自定义命名、支持指定图标大小等。

总之,vite-plugin-svg-icons插件的作用是简化在Vue项目中使用SVG图标的过程,提供了更加灵活和方便的方式来管理和使用这些图标。

{#_label0}

vite-plugin-svg-icons 安装 {#heading-0}

node version: >=12.0.0

vite version: >=2.0.0

npm i vite-plugin-svg-icons -D
// 或者
yarn add vite-plugin-svg-icons -D
// 或者
pnpm install vite-plugin-svg-icons -D

配置使用vite-plugin-svg-icons {#heading-1}

  • vite.config.ts 中的配置插件
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import path from 'path'

export default () => {   return {     plugins: [       createSvgIconsPlugin({         // 指定需要缓存的图标文件夹         iconDirs: [path.resolve(process.cwd(), 'src/icons')],         // 指定symbolId格式         symbolId: 'icon-[dir]-[name]',

        /**          * 自定义插入位置          * @default: body-last          */         inject?: 'body-last' | 'body-first'

        /**          * custom dom id          * @default: svg__icons__dom          */         customDomId: 'svg__icons__dom',       }),     ],   } }

  • 在 src/main.ts 内引入注册脚本
import 'virtual:svg-icons-register'

到这里 svg 已经引入可以使用

{#_label2}

如何在Vue 组件使用 {#heading-2}

/src/components/SvgIcon.vue

<template>
  <svg aria-hidden="true">
    <use :xlink:href="symbolId" rel="external nofollow"  :fill="color" />
  </svg>
</template>

<script> import { defineComponent, computed } from 'vue'

export default defineComponent({   name: 'SvgIcon',   props: {     prefix: {       type: String,       default: 'icon',     },     name: {       type: String,       required: true,     },     color: {       type: String,       default: '#333',     },   },   setup(props) {     const symbolId = computed(() => #${props.prefix}-${props.name})     return { symbolId }   }, }) </script>

icons 目录结构

# src/icons

- icon1.svg - icon2.svg - icon3.svg - dir/icon1.svg

/src/App.vue

<template>
  <div>
    <SvgIcon name="icon1"></SvgIcon>
    <SvgIcon name="icon2"></SvgIcon>
    <SvgIcon name="icon3"></SvgIcon>
    <SvgIcon name="dir-icon1"></SvgIcon>
  </div>
</template>

<script> import { defineComponent, computed } from 'vue'

import SvgIcon from './components/SvgIcon.vue' export default defineComponent({   name: 'App',   components: { SvgIcon }, }) </script>

优点 {#heading-3}

  • 可扩展性:vite-plugin-svg-icons 提供了灵活的配置选项,允许开发者自定义图标的加载和使用方式。

  • 轻量级:vite-plugin-svg-icons 是一个轻量级的插件,没有额外的依赖,可以快速集成到现有的项目中。

  • 性能优化:vite-plugin-svg-icons 可以将 SVG 图标转换为内联的 Vue 组件,减少 HTTP 请求,提高页面加载速度。

  • 简化开发流程:使用 vite-plugin-svg-icons,开发者可以直接在代码中引用 SVG 图标,无需手动处理 SVG 文件。

  • 兼容性:vite-plugin-svg-icons 支持多种类型的 SVG 图标,包括普通的 SVG 文件、Symbol 图标和图标字体等。


赞(3)
未经允许不得转载:工具盒子 » 分享vue3+vite应用:如何显示SVG图片