Heim > Artikel > Web-Frontend > Eine ausführliche Analyse der Verwendung von SVG-Symbolen in vue3+vite
SVG-Bilder werden häufig in Projekten verwendet. In diesem Artikel wird die Verwendung von SVG-Symbolen in vue3 + vite vorgestellt. Ich hoffe, dass er für alle hilfreich ist.
yarn add vite-plugin-svg-icons -D # or npm i vite-plugin-svg-icons -D # or pnpm install vite-plugin-svg-icons -D
Verwenden Sie das Konfigurations-Plugin
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__', }), ], } }
in
vite.config.ts, um das Registrierungsskript in src/main.js
import 'virtual:svg-icons-register'einzuführen Anwendung es in Komponenten
SvgIcon-Komponente erstellen
<template> <svg aria-hidden="true" class="svg-icon" :width="props.size" :height="props.size"> <use :xlink:href="symbolId" :fill="props.color" /> </svg> </template> <script setup> 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>
icons-Verzeichnisstruktur
# src/icons - icon1.svg - icon2.svg - icon3.svg - dir/icon1.svg
Globale Registrierungskomponenten
# src/main.js import { createApp } from 'vue' import App from './App.vue' import router from './router' import ElementPlus from 'element-plus' import 'element-plus/dist/index.css' import svgIcon from "@/components/SvgIcon/index.vue"; import 'virtual:svg-icons-register' createApp(App) .use(ElementPlus) .use(router) .component('svg-icon', svgIcon) .mount('#app')
<template> <svg-icon v-if="props.icon" :name="props.icon" /> <span v-if="props.title" slot='title'>{{ props.title }}</span> </template> <script setup> const props = defineProps({ icon: { type: String, default: '' }, title: { type: String, default: '' } }) </script>
import ids from 'virtual:svg-icons-names' // => ['icon-icon1','icon-icon2','icon-icon3'](Lernvideo-Sharing: Web-Front-End-Entwicklung,
Das obige ist der detaillierte Inhalt vonEine ausführliche Analyse der Verwendung von SVG-Symbolen in vue3+vite. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!