13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
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;
|
|
}
|
|
}
|
|
|
|
export {}; // Important! See note.
|