JeecgBoot/jeecgboot-vue3/types/unplugin-icons.d.ts
2026-04-28 15:28:00 +08:00

11 lines
252 B
Vue

/**
* unplugin-icons 类型声明
* 为 ~icons 路径提供类型支持
*/
declare module '~icons/*' {
import { FunctionalComponent, SVGAttributes } from 'vue';
const component: FunctionalComponent<SVGAttributes>;
export default component;
}