YPS-Beer/frontend/src/plugins/index.ts
2023-12-07 00:20:59 +00:00

21 lines
362 B
TypeScript

/**
* plugins/index.ts
*
* Automatically included in `./src/main.ts`
*/
// Plugins
import vuetify from './vuetify'
import router from '../router'
// Types
import type { App } from 'vue';
import { VueQueryPlugin } from '@tanstack/vue-query';
export function registerPlugins (app: App) {
app
.use(vuetify)
.use(router)
.use(VueQueryPlugin);
}