Skip to content

Commit

Permalink
fix(datepicker): JSDoc for setValue method
Browse files Browse the repository at this point in the history
  • Loading branch information
mst101 committed Apr 28, 2022
1 parent 3ac6d5b commit a2c71fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Datepicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,8 @@ export default {
}
},
/**
* Set the datepicker value (and, if typeable, update `latestValidTypedDate`) * @param {Date|String|Number|null} date
* Set the datepicker value (and, if typeable, update `latestValidTypedDate`)
* @param {Date|String|Number|null} date
*/
setValue(date) {
this.selectedDate = date || null
Expand Down

0 comments on commit a2c71fc

Please sign in to comment.