mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-10-03 15:16:00 +00:00
13 lines
182 B
JavaScript
13 lines
182 B
JavaScript
/**
|
|
* plugins/index.js
|
|
*
|
|
* Automatically included in `./src/main.js`
|
|
*/
|
|
|
|
// Plugins
|
|
import vuetify from './vuetify'
|
|
|
|
export function registerPlugins (app) {
|
|
app.use(vuetify)
|
|
}
|