Skip to content

Commit a7e7180

Browse files
committed
fix(test:vuejs3-typescript): add typescript types for .vue modules
1 parent 30cc073 commit a7e7180

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
declare module '*.vue' {
2+
import { defineComponent } from 'vue';
3+
4+
const component: ReturnType<typeof defineComponent>;
5+
export default component;
6+
}

0 commit comments

Comments
 (0)