You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
385 B
15 lines
385 B
|
2 months ago
|
/**
|
||
|
|
@ 作者: 秦东
|
||
|
|
@ 时间: 2026-01-09 15:57:48
|
||
|
|
@ 功能: 加载svg文件
|
||
|
|
*/
|
||
|
|
export const loadSvgFiles = (): string[] => {
|
||
|
|
const icons = import.meta.glob('../assets/icons/*.svg')
|
||
|
|
const svgIcons: string[] = []
|
||
|
|
for (const icon in icons) {
|
||
|
|
const iconName = icon.split('assets/icons/')[1].split('.svg')[0]
|
||
|
|
svgIcons.push(iconName)
|
||
|
|
}
|
||
|
|
return svgIcons
|
||
|
|
}
|