diff --git a/ayanova/src/components/gzdatepicker.vue b/ayanova/src/components/gzdatepicker.vue new file mode 100644 index 00000000..1c1b1710 --- /dev/null +++ b/ayanova/src/components/gzdatepicker.vue @@ -0,0 +1,56 @@ + + + +// props: { +// value: String +// }, +// data: function() { +// return { +// ogdate: "" +// }; +// }, +// render() { +// return this.$createElement("v-date-picker", { +// props: { +// ...this.$attrs, +// value: this.value ? this.value.substr(0, 10) : null +// }, +// on: { +// ...this.$listeners, +// input: date => this.$emit("input", new Date(date).toISOString()) +// } +// }); +// } + +