---初始化后台管理web页面项目
This commit is contained in:
21
types/module.d.ts
vendored
Normal file
21
types/module.d.ts
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
declare module '*.vue' {
|
||||
import { DefineComponent } from 'vue';
|
||||
const Component: DefineComponent<{}, {}, any>;
|
||||
export default Component;
|
||||
}
|
||||
|
||||
declare module 'ant-design-vue/es/locale/*' {
|
||||
import { Locale } from 'ant-design-vue/types/locale-provider';
|
||||
const locale: Locale & ReadonlyRecordable;
|
||||
export default locale as Locale & ReadonlyRecordable;
|
||||
}
|
||||
|
||||
declare module 'virtual:*' {
|
||||
const result: any;
|
||||
export default result;
|
||||
}
|
||||
|
||||
declare module 'vue-esign' {
|
||||
const result: any;
|
||||
export default result;
|
||||
}
|
||||
Reference in New Issue
Block a user