init
This commit is contained in:
19
src/plugins/index.ts
Normal file
19
src/plugins/index.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import router from '../router';
|
||||
import {createPinia} from 'pinia';
|
||||
/**
|
||||
* plugins/index.ts
|
||||
*
|
||||
* Automatically included in `./src/main.ts`
|
||||
*/
|
||||
|
||||
// Types
|
||||
import type { App } from 'vue'
|
||||
|
||||
// Plugins
|
||||
import vuetify from './vuetify'
|
||||
|
||||
export function registerPlugins (app: App) {
|
||||
app.use(vuetify)
|
||||
app.use(createPinia());
|
||||
app.use(router);
|
||||
}
|
||||
Reference in New Issue
Block a user