working with webpack 5

This commit is contained in:
2022-06-27 15:28:35 +02:00
parent a9bc98738e
commit 922c5c5f5c
2 changed files with 7 additions and 3 deletions

7
src/shims-vue.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
declare module "*.vue" {
import { defineComponent } from 'vue'
const Component: ReturnType<typeof defineComponent>
export default Component
}