|
@@ -10,6 +10,15 @@ export {}
|
|
|
declare module '@vue/runtime-core' {
|
|
|
export interface GlobalComponents {
|
|
|
Confirm: typeof import('./src/components/Toast/Confirm.vue')['default']
|
|
|
+ ElButton: typeof import('element-plus/es')['ElButton']
|
|
|
+ ElDialog: typeof import('element-plus/es')['ElDialog']
|
|
|
+ ElForm: typeof import('element-plus/es')['ElForm']
|
|
|
+ ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
|
|
+ ElIcon: typeof import('element-plus/es')['ElIcon']
|
|
|
+ ElInput: typeof import('element-plus/es')['ElInput']
|
|
|
+ ElPagination: typeof import('element-plus/es')['ElPagination']
|
|
|
+ ElTable: typeof import('element-plus/es')['ElTable']
|
|
|
+ ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
|
|
Footer: typeof import('./src/components/mobile/footer.vue')['default']
|
|
|
Header: typeof import('./src/components/mobile/header.vue')['default']
|
|
|
HelloWorld: typeof import('./src/components/HelloWorld.vue')['default']
|
|
@@ -28,4 +37,7 @@ declare module '@vue/runtime-core' {
|
|
|
Toast: typeof import('./src/components/Toast/Toast.vue')['default']
|
|
|
WelcomeItem: typeof import('./src/components/WelcomeItem.vue')['default']
|
|
|
}
|
|
|
+ export interface ComponentCustomProperties {
|
|
|
+ vLoading: typeof import('element-plus/es')['ElLoadingDirective']
|
|
|
+ }
|
|
|
}
|