This commit is contained in:
2020-04-06 23:33:01 +00:00
parent f26f97aff3
commit 5315300790
4 changed files with 91 additions and 2 deletions

View File

@@ -16,6 +16,7 @@ import VueCurrencyInput from "vue-currency-input";
import lodash from "./libs/lodash.min.js";
//my libs
import errorhandler from "./api/errorhandler";
import ayaNovaVersion from "./api/ayanova-version";
import gzeventbus from "./api/eventbus";
import gzmenu from "./api/gzmenu";
@@ -42,7 +43,7 @@ import customFieldsControl from "./components/custom-fields-control.vue";
import currencyControl from "./components/currency-control.vue";
import decimalControl from "./components/decimal-control.vue";
import errorControl from "./components/error-control.vue";
import errorhandler from "./api/errorhandler";
import reportSelectorControl from "./components/report-selector-control.vue";
/////////////////////////////////////////////////////////////////
// LIBS AND GLOBAL ITEMS
@@ -170,6 +171,7 @@ Vue.component("gz-custom-fields", customFieldsControl);
Vue.component("gz-currency", currencyControl);
Vue.component("gz-decimal", decimalControl);
Vue.component("gz-error", errorControl);
Vue.component("gz-report-selector", reportSelectorControl);
//3rd party components
Vue.use(VueCurrencyInput);