From 0eb4c481ba5904c6a5fcefd589d0b782073948e0 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 26 Nov 2019 21:16:14 +0000 Subject: [PATCH] --- ayanova/src/components/time-control.vue | 285 ++++++++++++++++++++++++ ayanova/src/main.js | 2 + 2 files changed, 287 insertions(+) create mode 100644 ayanova/src/components/time-control.vue diff --git a/ayanova/src/components/time-control.vue b/ayanova/src/components/time-control.vue new file mode 100644 index 00000000..c0e8e367 --- /dev/null +++ b/ayanova/src/components/time-control.vue @@ -0,0 +1,285 @@ + + + +// + diff --git a/ayanova/src/main.js b/ayanova/src/main.js index acad4dce..443a2254 100644 --- a/ayanova/src/main.js +++ b/ayanova/src/main.js @@ -33,6 +33,7 @@ import "@/assets/css/main.css"; //controls import dateTimeControl from "./components/date-time-control.vue"; import dateControl from "./components/date-control.vue"; +import timeControl from "./components/time-control.vue"; import tagPicker from "./components/tag-picker.vue"; import customFieldsControl from "./components/custom-fields-control.vue"; import errorhandler from "./api/errorhandler"; @@ -165,6 +166,7 @@ Vue.filter("boolastext", function vueFilterBoolAsText(value) { // 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); Vue.component("gz-custom-fields", customFieldsControl);