Can someone assist with the following HTML code:
<datepicker :date="child" :option="option" v-model="child.dob" @change="updatechildDOB(child)" :disabled="disabled"></datepicker>
Here are the available options:
option: { type: 'day', week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'], month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], format: 'YYYY-MM-DD', placeholder: 'Date of birth', color: { header: '#2b98a7', headerText: '#fff' }, buttons: { ok: 'Ok', cancel: 'Cancel' }, overlayOpacity: 0.5, dismissible: true }, disabled: { from: new Date() },
Any assistance would be greatly appreciated!