"Vue" capitalization

This commit is contained in:
Jörn-Michael Miehe 2022-09-12 22:18:21 +00:00
parent 84ebce761e
commit 07277602de
2 changed files with 6 additions and 6 deletions

View file

@ -1,8 +1,8 @@
import axios from 'axios';
import _Vue from 'vue';
import Vue from 'vue';
class AxiosPlugin {
public install(Vue: typeof _Vue) {
public install(vue: typeof Vue) {
// Full config: https://github.com/axios/axios#request-config
// axios.defaults.baseURL = process.env.baseURL || process.env.apiUrl || '';
// axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
@ -39,7 +39,7 @@ class AxiosPlugin {
}
);
Vue.prototype.$axios = _axios;
vue.prototype.$axios = _axios;
}
}

View file

@ -1,8 +1,8 @@
import _Vue from 'vue';
import Vue from 'vue';
class OVDashboardPlugin {
public install(Vue: typeof _Vue) {
Vue.prototype.$ovdashboard = this;
public install(vue: typeof Vue) {
vue.prototype.$ovdashboard = this;
}
private get api_baseurl(): string {