ff-admin/src/globalProperties.config.ts

12 lines
276 B
TypeScript
Raw Normal View History

2024-08-25 10:10:11 +02:00
import type { RouteLocationNormalizedLoaded, Router } from "vue-router";
2024-08-23 14:42:32 +02:00
declare module "@vue/runtime-core" {
interface ComponentCustomProperties {
$dev: boolean;
$router: Router;
2024-08-25 10:10:11 +02:00
$route: RouteLocationNormalizedLoaded;
2024-08-23 14:42:32 +02:00
}
}
export {}; // Important! See note.