Initial commit

This commit is contained in:
2024-04-09 00:28:28 +02:00
commit 77ff25da75
31 changed files with 1079 additions and 0 deletions

11
src/main.ts Normal file
View File

@ -0,0 +1,11 @@
import './assets/main.css'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
const app = createApp(App)
app.use(createPinia())
app.mount('#app')