18 lines
311 B
TypeScript
18 lines
311 B
TypeScript
|
/**
|
||
|
* plugins/index.ts
|
||
|
*
|
||
|
* Automatically included in `./src/main.ts`
|
||
|
*/
|
||
|
|
||
|
// Plugins
|
||
|
import { VueQueryPlugin } from "@tanstack/vue-query";
|
||
|
import vuetify from "./vuetify";
|
||
|
|
||
|
// Types
|
||
|
import type { App } from "vue";
|
||
|
|
||
|
export function registerPlugins(app: App) {
|
||
|
app.use(vuetify);
|
||
|
app.use(VueQueryPlugin);
|
||
|
}
|