ホームページ > 記事 > ウェブフロントエンド > vue3+vite2でsvgメソッドを使用する方法
ここで fast-glob 関連の依存関係もインストールする必要があります。そうしないと、npm run dev の実行時に vite が「モジュール 'fast-glob' が見つかりません」エラーを報告します。
npm i fast-glob@3.x -D npm i vite-plugin-svg-icons@2.x -D
<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>
types に設定を追加して、必要なモジュールを指定します含める場合、ここにリストされているモジュールの宣言ファイルのみがロードされます。追加する必要はありません。2 つのデモをテストしたとき、1 つは必要で、もう 1 つは必要ありませんでした。問題がある場合は、vite に
{ "compilerOptions": { "types": ["vite-plugin-svg-icons/client"] } }
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]', }) ] })
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" ></svg-icon> </template>
以上がvue3+vite2でsvgメソッドを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。