initial post-installation commit

This commit is contained in:
padreug 2025-01-30 13:26:56 +01:00
commit a44ee45a38
20 changed files with 2676 additions and 0 deletions

5
src/main.ts Normal file
View file

@ -0,0 +1,5 @@
import { createApp } from 'vue'
import App from './App.vue'
import './assets/index.css'
createApp(App).mount('#app')