2021-05-12 11:32:31 +08:00
|
|
|
|
/* eslint-disable */
|
2021-06-19 17:49:42 +08:00
|
|
|
|
|
|
|
|
|
// 声明文件,*.vue 后缀的文件交给 vue 模块来处理
|
2021-03-15 12:44:58 +08:00
|
|
|
|
declare module '*.vue' {
|
2021-05-12 11:32:31 +08:00
|
|
|
|
import type { DefineComponent } from 'vue';
|
2021-03-15 12:44:58 +08:00
|
|
|
|
const component: DefineComponent<{}, {}, any>;
|
|
|
|
|
export default component;
|
|
|
|
|
}
|
2021-06-19 17:49:42 +08:00
|
|
|
|
|
|
|
|
|
// 声明文件,定义全局变量。其它 app.config.globalProperties.xxx,使用 getCurrentInstance() 来获取
|
|
|
|
|
interface Window {
|
|
|
|
|
nextLoading: boolean;
|
|
|
|
|
}
|