vite-plugin-moon-svg
v1.0.5
Published
## 功能
Downloads
11
Readme
vite-plugin-moon-svg
功能
- svg文件可通过import直接作为组件使用
- import的svg文件,除了默认返回一个vue组件,还返回当前svg的文本内容context
- 可通过virtual:moon-svg-get模块,依据svg名获取svg对应的组件。或获取全部svg对应的组件
- virtual:moon-svg-get中 依据svg名获取svg对应的组件,为按需引入,不会导致页面一次加载全部的svg文件。
安装
npm i vite-plugin-moon-svg -S
配置
TS类型支持
在公共的d.ts文件中添加下面的代码
/// <reference types="vite-plugin-moon-svg/types" />
或者在tsconfig.json文件添加
"types": ["vite-plugin-moon-svg/types"],
类型内容
declare module '*.svg' {
const Component: DefineComponent<{}, {}, any>;
export default Component;
export const context: string;
}
declare interface MoonSvgIconType {
component: string; // 或者根据实际类型进行更精确的定义
name: string;
context?: string; //需要再插件配置开启ctxable,
}
declare module 'virtual:moon-svg-get' {
const result: (args: { name?: string; all?: boolean }) => Promise<MoonSvgIconType | MoonSvgIconType[] | null>;
export default result;
}
vite.config.ts文件
参数
| 名称 | 说明 | 参数 | | --------- | ------------------------------------------------------------ | ---- | | dir | svg文件目录,相对于项目更目录。 使用virtual:moon-svg-get模块时必须指定dir目录。子目录中的文件,svg组件名为 :{子目录名}-{文件名} | - | | transfrom | 对svg文件进行操作,如替换修改属性等。 | - | | ctxable | import文件时,是否同时返回svg的文本内容 | - |
//添加插件
import MoonSvgPlugin from 'vite-plugin-moon-svg';
plugins:[
MoonSvgPlugin({
dir: 'src/assets/svg',
transfrom: (svg,filename,filepath) =>
// 亦可依据filename或filepath,指定修改svg
svg
.replace(/fill(\s*)=(\s*)"[^"]*"/g, '')
.replace(/width(\s*)=(\s*)"[^"]*"/, '')
.replace(/height(\s*)=(\s*)"[^"]*"/, '')
.replace(/^<svg /, '<svg fill="currentColor" width="1em" height="1em" '),
}),
]
组件使用
直接引入svg文件使用
<templaget>
<logOut ></logOut>
</templaget>
<script setup lang="ts">
//logOut为logOut.svg的vue组件,context为logOut.svg的文本内容
// context只有插件配置了ctxable:true 时才有。
import logOut,{context} from '@/assets/svg/logOut.svg'
</script>
通过 virtual:moon-svg-get模块,依据文件名按需动态获取svg文件
<templaget>
单个svg图标
<component v-if="CustomSvg" :is="CustomSvg.component"></component>
单个svg文本内容
{{CustomSvg.context}}
全部svg图标
<component v-for="icon in customIcons" :key="icon.name" :is="icon.component" @click="iconName = icon.name"></component>
</templaget>
<script setup lang="ts">
import getCustomSvg from 'virtual:moon-svg-get';
const CustomSvg = ref<MoonSvgIconType | null>(null);
CustomSvg.value = (await getCustomSvg({ name:'logOut' })) as MoonSvgIconType;
const customIcons = ref<MoonSvgIconType[]>([]);
getCustomSvg({ all: true }).then((arr) => {
customIcons.value = arr as MoonSvgIconType[];
});
</script>