JavaProjectRepo/business-css/frontend/src/components.d.ts

10 lines
216 B
TypeScript
Raw Normal View History

2025-11-21 13:06:11 +08:00
// 全局组件类型声明
import Pagination from '@/components/Pagination/index.vue';
declare module '@vue/runtime-core' {
export interface GlobalComponents {
Pagination: typeof Pagination;
}
}
export {};