decisions

This commit is contained in:
Julian Krauser 2024-10-08 10:43:16 +02:00
parent 562f6ab1f2
commit 0d559c9365
13 changed files with 78 additions and 11 deletions

View file

@ -1,8 +1,10 @@
import type { AxiosInstance } from "axios";
import type { RouteLocationNormalizedLoaded, Router } from "vue-router";
declare module "@vue/runtime-core" {
interface ComponentCustomProperties {
$dev: boolean;
$http: AxiosInstance;
$router: Router;
$route: RouteLocationNormalizedLoaded;
}