feat: vue project setup

This commit is contained in:
Pihkaal
2025-11-04 23:14:48 +01:00
parent da0346df42
commit 9800b42e5c
21 changed files with 4828 additions and 0 deletions

9
src/main.ts Normal file
View File

@@ -0,0 +1,9 @@
import { createApp } from "vue";
import { createPinia } from "pinia";
import App from "./App.vue";
const app = createApp(App);
app.use(createPinia());
app.mount("#app");