SmartSubstationPlatform/riis-web/src/components.d.ts
2025-04-24 14:53:21 +08:00

10 lines
216 B
TypeScript

// 全局组件类型声明
import Pagination from '@/components/Pagination/index.vue';
declare module '@vue/runtime-core' {
export interface GlobalComponents {
Pagination: typeof Pagination;
}
}
export {};