misc. changes

This commit is contained in:
2024-11-24 23:25:59 +01:00
parent b059038ea8
commit 771cea72ad
11 changed files with 85 additions and 15 deletions

View File

@@ -1,11 +1,12 @@
import { createApp } from "vue";
import HelloWorld from "./components/HelloWorld.vue";
import Stats from "./components/Stats.vue";
import Test from "./components/Test.vue";
const app = createApp({});
app.component("hello-world", Stats);
app.component("stats", Stats);
(window as any).app = app;
app.mount("#app");
app.mount("#app");