See #2. Co-authored-by: vikingowl <christian@nachtigall.dev> Reviewed-on: #2 Reviewed-by: anonfunc <539@idlegandalf.com> Co-authored-by: vikingowl <vikingowl@noreply.somegit.dev> Co-committed-by: vikingowl <vikingowl@noreply.somegit.dev>
16 lines
228 B
TypeScript
16 lines
228 B
TypeScript
/**
|
|
* plugins/index.ts
|
|
*
|
|
* Automatically included in `./src/main.ts`
|
|
*/
|
|
|
|
// Plugins
|
|
import vuetify from './vuetify'
|
|
|
|
// Types
|
|
import type { App } from 'vue'
|
|
|
|
export function registerPlugins (app: App) {
|
|
app.use(vuetify)
|
|
}
|