components.d.ts 241 B

12345678910
  1. import 'element-plus/global';
  2. import 'ele-admin-plus/typings/global';
  3. declare module '@vue/runtime-core' {
  4. export interface GlobalComponents {
  5. DictData: (typeof import('@/components/DictData/index.vue'))['default'];
  6. }
  7. }
  8. export {};