initial commit

This commit is contained in:
2025-02-12 22:13:31 +01:00
commit 047b2e9f4a
52 changed files with 8552 additions and 0 deletions

16
src/main.ts Normal file
View File

@ -0,0 +1,16 @@
import { createApp } from 'vue';
import { definePreset } from '@primevue/themes';
import Theme from '@primevue/themes/aura';
import PrimeVue from 'primevue/config';
import App from './components/App.vue';
const app = createApp(App);
const Preset = definePreset(Theme, {});
app.use(PrimeVue, {
theme: {
preset: Preset,
},
});
app.mount('#app');