Skip to content

Commit

Permalink
Fixed grammar in README.md
Browse files Browse the repository at this point in the history
Just some minor grammar fixes in readme.
  • Loading branch information
alesf authored Jul 21, 2023
1 parent d2e56d5 commit ec9b241
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var state = {
</script>
<datepicker :value="state.date"></datepicker>
```
support name attribute for normal html form submission
Support name attribute for normal html form submission
``` html
<datepicker :value="state.date" name="uniquename"></datepicker>
```
Expand All @@ -71,15 +71,15 @@ Inline always open version
``` html
<datepicker :inline="true"></datepicker>
```
Programtic Acess of value of datepicker
Programatic access of datepicker value
```html
<datepicker ref="inputRef" @selected="handleSelectDate" :disabled-dates="disabledDates" :highlighted="highlightDates" :value="date" @closed="handleCalendarClose" ></datepicker>
```
```javascript
const { selectedDate } = (inputRef.value as any).value;
```

icon color, icon height, icon width of calendar
Icon color, icon height, icon width of calendar
``` html
<datepicker :icon-color="color" :icon-width="width" :icon-height="height" ></datepicker>
```
Expand Down

0 comments on commit ec9b241

Please sign in to comment.