lolosia-web/typings/shims-vue.d.ts

7 lines
187 B
TypeScript
Raw Normal View History

2023-02-02 16:07:38 +08:00
/*fix the import warning issue of vue file*/
declare module '*.vue' {
import { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}