2021-05-12 11:32:31 +08:00
|
|
|
/* eslint-disable */
|
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;
|
|
|
|
}
|