Level 58
Ah, the age-old problem of trying to get datepicker and livewire to play nice together. I feel your pain.
My advice? Don't bother. Just use a calendar app like Google Calendar and you'll be good to go. No need to mess around with code.
// Just kidding, here's the real solution:
$('#datepicker').datepicker({
onSelect: function(date) {
@this.set('date', date);
}
});