vue-datepicker-ui
vue-datepicker-ui copied to clipboard
"placeholder" prop in the documentation is wrong
Documentation mentions how to overwrite the placeholder text like this:
<Datepicker
...
:placeholder=""
...
/>
However it is wrong. It should be passed like this:
<Datepicker
...
placeholder="New Placeholder Text"
...
/>
FYI.