This commit is contained in:
2020-04-15 23:23:43 +00:00
parent 138e9a22db
commit 5499b36f19
4 changed files with 19 additions and 33 deletions

View File

@@ -25,7 +25,7 @@ import gzutil from "./api/gzutil";
import translation from "./api/translation";
import locale from "./api/locale";
import gzapi from "./api/gzapi";
import gzreport from "./api/gzreport";
import gzform from "./api/gzform";
import gzformcustomtemplate from "./api/form-custom-template";
import authorizationroles from "./api/authorizationroles";
@@ -45,6 +45,7 @@ import decimalControl from "./components/decimal-control.vue";
import errorControl from "./components/error-control.vue";
import reportSelectorControl from "./components/report-selector-control.vue";
import reportViewerControl from "./components/report-viewer-control.vue";
import wikiViewerControl from "./components/wiki-viewer-control.vue";
/////////////////////////////////////////////////////////////////
// LIBS AND GLOBAL ITEMS
@@ -71,7 +72,6 @@ window.$gz = {
_: lodash,
api: gzapi,
form: gzform,
report: gzreport,
errorHandler: errorhandler,
store: store,
clientInfo: ayaNovaVersion,
@@ -174,6 +174,7 @@ Vue.component("gz-decimal", decimalControl);
Vue.component("gz-error", errorControl);
Vue.component("gz-report-selector", reportSelectorControl);
Vue.component("gz-report-viewer", reportViewerControl);
Vue.component("gz-wiki-viewer", wikiViewerControl);
//3rd party components
Vue.use(VueCurrencyInput);