home-cert-assistant/frontend/src/plugins/index.ts
Torge Hamann 254f2f09ec
🎉 Initial template frontend setup (#1)
* Initial frontend setup

* Adapt template to home cert manager
2024-11-17 17:47:13 +01:00

10 lines
184 B
TypeScript

import vuetify from './vuetify'
import router from '../router'
import type { App } from 'vue'
export function registerPlugins (app: App) {
app
.use(vuetify)
.use(router)
}