fix: declare vue component type (#8)

This commit is contained in:
Ragura 2022-01-24 12:46:32 +01:00 committed by GitHub
parent 8c0bb070da
commit 19ed8a2dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
src/shims.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}