protocol base views

This commit is contained in:
Julian Krauser 2024-10-03 13:43:13 +02:00
parent f453bdc7d3
commit c1e9784b4a
14 changed files with 708 additions and 24 deletions

View file

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