How can I get a type="date" form element on lightpicker, it seems to fail lighthouse tests: Form elements do not have associated labels, if I try this, then the datepicker stops working?
<litepicker v-model="dateRange" :options="{
autoApply: true,
singleMode: false,
numberOfColumns: 2,
numberOfMonths: 2,
showWeekNumbers: true,
dropdowns: {
minYear: 2021,
maxYear: null,
months: true,
years: true
}
}" class="form-control pl-12" type="date"/>`
Hi
How can I get a type="date" form element on lightpicker, it seems to fail lighthouse tests: Form elements do not have associated labels, if I try this, then the datepicker stops working?
<litepicker
v-model="dateRange" :options="{ autoApply: true, singleMode: false, numberOfColumns: 2, numberOfMonths: 2, showWeekNumbers: true, dropdowns: { minYear: 2021, maxYear: null, months: true, years: true } }" class="form-control pl-12" type="date"/>`