diff --git a/examples/vue/vite-env.d.ts b/examples/vue/vite-env.d.ts new file mode 100644 index 000000000..323c78a6c --- /dev/null +++ b/examples/vue/vite-env.d.ts @@ -0,0 +1,7 @@ +/// + +declare module '*.vue' { + import type { DefineComponent } from 'vue' + const component: DefineComponent<{}, {}, any> + export default component +}