lots of things

This commit is contained in:
Sam Hoffman
2026-01-18 18:30:22 -05:00
parent 5e71721f4d
commit 78a1be39eb
12 changed files with 568 additions and 28 deletions

View File

@@ -1,8 +1,9 @@
import vuetify from "./vuetify";
import pinia from "@/stores";
import router from "./router.ts";
import type { App } from "vue";
export function registerPlugins(app: App) {
app.use(vuetify).use(pinia);
app.use(vuetify).use(router).use(pinia);
}