// This doesn\'t work
How can I bind a date input to a date object in my store?
Assuming you want your dates as midnight UTC date objects, do this...
<input type='date' :value='store.myDate.toJSON().substring(0,10)' @input='store.myDate = new Date($event.target.value)' >