diff --git a/ui/src/d.ts/shims-ovdashboard.d.ts b/ui/src/d.ts/shims-ovdashboard.d.ts index 40994d2..99bfd4f 100644 --- a/ui/src/d.ts/shims-ovdashboard.d.ts +++ b/ui/src/d.ts/shims-ovdashboard.d.ts @@ -1,9 +1,7 @@ import { OVDashboardPlugin } from "@/plugins/ovdashboard"; -import { AxiosInstance } from "axios"; declare module 'vue/types/vue' { interface Vue { - $axios: AxiosInstance; $ovdashboard: OVDashboardPlugin; } } diff --git a/ui/src/plugins/ovdashboard.ts b/ui/src/plugins/ovdashboard.ts index 5bac2c7..7b10886 100644 --- a/ui/src/plugins/ovdashboard.ts +++ b/ui/src/plugins/ovdashboard.ts @@ -20,7 +20,6 @@ export class OVDashboardPlugin { } public install(vue: typeof Vue) { - vue.prototype.$axios = this.axios; vue.prototype.$ovdashboard = this; }