vue3+vite2中使用svg的方法詳解(親測可用)
技術棧:vue3+vite2
前言:
寫過一版基於vue-cli中使用svg的方法,但是因為webpack提供瞭require.context()在vite中無法使用,所以基於vite構建的項目則采取另一種方法
一、安裝vite-plugin-svg-icons
此處還需要安裝下fast-glob相關依賴,不然vite運行npm run dev時會報Cannot find module 'fast-glob’的錯誤
npm i [email protected] -D npm i [email protected] -D
二、在src/components/svgIcon下新建組件index.vue
<template> <svg aria-hidden="true" class="svg-icon"> <use :xlink:href="symbolId" rel="external nofollow" :fill="color" /> </svg> </template> <script setup lang="ts"> import { computed } from 'vue'; const props = defineProps({ prefix: {type: String,default: 'icon',}, iconClass: {type: String,required: true,}, color: {type: String,default: ''} }) const symbolId = computed(() => `#${props.prefix}-${props.iconClass}`); </script> <style scoped> .svg-icon { width: 1em; height: 1em; vertical-align: -0.15em; overflow: hidden; fill: currentColor; } </style>
三、tsconfig.json中添加設置
types用來指定需要包含的模塊,隻有在這裡列出的模塊的聲明文件才會被加載進來。非必要添加,我在兩個demo測試的時候,一個需要一個不需要,若有問題可以嘗試添加
{ "compilerOptions": { "types": ["vite-plugin-svg-icons/client"] } }
四、vite.config.ts 中的配置插件
import { resolve } from 'path' import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' export default defineConfig({ plugins: [ createSvgIconsPlugin({ // 指定需要緩存的圖標文件夾 iconDirs: [resolve(process.cwd(), 'src/assets/imgs/svg')], // 指定symbolId格式 symbolId: 'icon-[dir]-[name]', }) ] })
五、在main.ts全局註冊組件
import { createApp } from 'vue' import App from './App.vue' import router from '@/router' import { store, key } from '@/store' const app = createApp(App) import 'virtual:svg-icons-register' // 引入註冊腳本 import SvgIcon from '@/components/svgIcon/index.vue' // 引入組件 app.component('svg-icon', SvgIcon) app.use(router).use(store, key).mount('#app')
六、在頁面中使用
<template> <svg-icon icon-class="category"></svg-icon> <svg-icon icon-class="accountant" style="width: 10em; height: 10em;border: 1px solid #000000;"></svg-icon> </template>
七、文件目錄結構及其效果展示
八、參考鏈接地址
1、依賴官方參考文檔:https://github.com/vbenjs/vite-plugin-svg-icons/blob/main/README.zh_CN.md
2、其中有一些內容點我根據該文章進行參考:https://www.cnblogs.com/haoxianrui/archive/2022/04/02/16090029.html
3、在vue-cli中使用svg的可以參考我另一篇文章:https://www.jb51.net/article/258653.htm
總結
到此這篇關於vue3+vite2中使用svg的文章就介紹到這瞭,更多相關vue3+vite2使用svg內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- vue3+vue-cli4中使用svg的方式詳解(親測可用)
- 基於Vue實現自定義組件的方式引入圖標
- element-plus中如何實現按需導入與全局導入
- vue如何封裝自己的Svg圖標組件庫(svg-sprite-loader)
- 使用vite創建vue3項目的詳細圖文教程