This commit is contained in:
shobu
2026-04-28 12:27:46 +02:00
commit 95b22713ce
33 changed files with 3492 additions and 0 deletions

19
src/plugins/index.ts Normal file
View File

@@ -0,0 +1,19 @@
import router from '../router';
import {createPinia} from 'pinia';
/**
* plugins/index.ts
*
* Automatically included in `./src/main.ts`
*/
// Types
import type { App } from 'vue'
// Plugins
import vuetify from './vuetify'
export function registerPlugins (app: App) {
app.use(vuetify)
app.use(createPinia());
app.use(router);
}