BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
changeDate: function(data) {
let startDate = this.$refs.starttime.value;
startDate = startDate.split(" ");
this.$refs.starttime.ej2_instances[0].value = new Date(
new Date(startDate[0]).setHours(8)
);
this.$refs.endTime.ej2_instances[0].value = new Date(
new Date(startDate[0]).setHours(16)
);
}
} |