1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /*
| * @Description:
| * @Version: 2.0
| * @Autor: wuyun
| * @Date: 2022-07-29 17:54:57
| * @LastEditors: wuyun
| * @LastEditTime: 2022-09-02 16:52:49
| */
| declare module '*.vue' {
| import { DefineComponent } from 'vue'
| // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
| const component: DefineComponent<{}, {}, any>
| export default component
| }
|
|