diff --git a/src/renderer/src/plugins/index.ts b/src/renderer/src/plugins/index.ts index ac046fa..14944b9 100644 --- a/src/renderer/src/plugins/index.ts +++ b/src/renderer/src/plugins/index.ts @@ -5,10 +5,10 @@ */ // Plugins +import vuetify from './vuetify'; import pinia from '../stores'; import router from '../router'; -import { App } from 'vue'; -export function registerPlugins(app: App) { - app.use(router).use(pinia); +export function registerPlugins(app) { + app.use(vuetify).use(router).use(pinia); }