11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import 'element-plus/global';
|
|
import 'ele-admin-plus/typings/global';
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
DictData: (typeof import('@/components/DictData/index.vue'))['default'];
|
|
}
|
|
}
|
|
|
|
export {};
|