This commit is contained in:
Arno Kaimbacher 2021-10-28 10:31:51 +02:00
commit 8e0bc7c18d
15 changed files with 30446 additions and 0 deletions

4
src/main.ts Normal file
View file

@ -0,0 +1,4 @@
import { createApp } from "vue";
import App from "./App.vue";
createApp(App).mount("#app");