Puedo ocultar input type file y activarlo desde otro elemento así:
<button @click="$refs.fileRef.click()></button>" <input type="file" ref="fileRef" style="display: none"> pero cuando intento eso con input type date , no funciona:
<button @click="$refs.dateRef.click()></button>" <input type="date" ref="dateRef" style="display: none"> ¿Alguna forma de activar el date picker a través de ref ?