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.
|
/**
|
|
* 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)
|
|
}
|