DocuSphere/web/src/plugins/index.ts
2024-09-02 20:50:10 +02:00

18 lines
281 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'
export function registerPlugins (app: App) {
app
.use(vuetify)
.use(router)
}