WIP: initial setup and more

This commit is contained in:
Ralph Schuler
2022-06-08 22:50:36 +02:00
parent 7414dec745
commit 1a578b1a95
18 changed files with 919 additions and 0 deletions

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

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