You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
279 B
18 lines
279 B
1 month ago
|
/**
|
||
|
* plugins/index.js
|
||
|
*
|
||
|
* Automatically included in `./src/main.js`
|
||
|
*/
|
||
|
|
||
|
// Plugins
|
||
|
import vuetify from './vuetify'
|
||
|
import pinia from '@/stores'
|
||
|
import router from '@/router'
|
||
|
|
||
|
export function registerPlugins (app) {
|
||
|
app
|
||
|
.use(vuetify)
|
||
|
.use(router)
|
||
|
.use(pinia)
|
||
|
}
|