This commit is contained in:
2020-11-28 00:59:08 +00:00
parent b432e0bd2d
commit fccc508b8b
2 changed files with 5 additions and 2 deletions

View File

@@ -36,6 +36,10 @@ To REMOVE: apt-get remove dotnet-runtime-3.0 (replace 3.0 with whatever version
MISC ITEMS THAT CAME UP
todo: DATE / TIME / DATE_TIME controls switch back to vuetify ones
Look into code, the non native originals are outdated in the methods they use (watchers)
make copies of them for backup then morph them into the same type of code as the native ones use
as that is the most current performant reliable way to do it.
Ensure can clear completely to null value
Test it out thoroughly there was a reason I quit using it the first time
i18n

View File

@@ -33,7 +33,6 @@ import gzenums from "./api/enums";
import "@/assets/css/main.css";
//controls
//import dateTimeControl from "./components/date-time-control.vue";
import dateTimeControl from "./components/date-time-control.vue";
import dateControl from "./components/date-control.vue";
import timeControl from "./components/time-control.vue";
@@ -178,7 +177,7 @@ document.addEventListener("fetchEnd", function() {
//GZ COMPONENTS
//
Vue.component("gz-date-time-picker", dateTimeControl); //keeping in case decide to support alternative (at this time mostly for mac ios it seems)
Vue.component("gz-date-time-picker", dateTimeControl);
Vue.component("gz-date-picker", dateControl);
Vue.component("gz-time-picker", timeControl);
Vue.component("gz-tag-picker", tagPicker);