-
If you want to prevent submit, use this instead: ``` <Form @submit.native.prevent> ```
-
Optimize append and remove options
-
修复 Slider 滑动按钮单击时数值跳动 issue
-
Input increase autocomplete
-
Add counter start to reduce
-
impove table render logic,fix xss.
-
fix #695
-
Refactor cell click handler and add more date picker and date range picker tests
-
Make date more IE friendly
-
Fix rating when init value is decimal
-
fixes #1736
-
Added `cell.date` so we don’t need `. getDateOfCell()` anymore Passed `cell` directly in `@click="handleClick(cell)”` so we don’t need `const cell = this.cells[parseInt(event.target.getAttribute('index’))];` anymore
-
Broken initial scroll in time-picker with steps
-
Date utils improvements and specs
-
Date utility functions `prevMonth` and `nextMonth` change the source date when using `src.set[Date|Month|FullYear]()`. This change creates a copy of the date at entrance of function so we have a pure function. Made some code refactor and added specs for these functions.