refactor: use @iconify-icons/ep

This commit is contained in:
xiaoxian521
2022-01-21 16:10:10 +08:00
parent 47dea87275
commit f236829b0f
37 changed files with 4418 additions and 2264 deletions

17
types/global.d.ts vendored
View File

@@ -6,16 +6,15 @@ import type {
PropType as VuePropType
} from "vue";
// GlobalComponents for Volar
declare module "vue" {
export interface GlobalComponents {
IconifyIconOffline: typeof import("../src/components/ReIcon")["IconifyIconOffline"];
IconifyIconOnline: typeof import("../src/components/ReIcon")["IconifyIconOnline"];
}
}
declare global {
const __APP_INFO__: {
pkg: {
name: string;
version: string;
dependencies: Recordable<string>;
devDependencies: Recordable<string>;
};
lastBuildTime: string;
};
interface Window {
// Global vue app instance
__APP__: App<Element>;