7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
|
/*fix the import warning issue of vue file*/
|
||
|
declare module '*.vue' {
|
||
|
import { DefineComponent } from 'vue'
|
||
|
const component: DefineComponent<{}, {}, any>
|
||
|
export default component
|
||
|
}
|