mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-05-24 01:13:53 +00:00
11 lines
252 B
Vue
11 lines
252 B
Vue
/**
|
|
* unplugin-icons 类型声明
|
|
* 为 ~icons 路径提供类型支持
|
|
*/
|
|
|
|
declare module '~icons/*' {
|
|
import { FunctionalComponent, SVGAttributes } from 'vue';
|
|
const component: FunctionalComponent<SVGAttributes>;
|
|
export default component;
|
|
}
|