Files
pokdedex_overkill/src/plugins/index.ts
2026-04-28 12:27:46 +02:00

19 lines
336 B
TypeScript

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);
}