Skip to content

1.0.8

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 12 Nov 22:01
· 3593 commits to main since this release

New

  • Added support for pre-defined getters/setters on data objects. This feature is off by default and must be turned on by setting Vue.config.convertAllProperties = true, since it comes with a small performance cost. (@jdavidberger)
  • v-on key modifiers now also support all single letters. (@yulon)
  • props options now supports using prop objects in array syntax again.

Fixed

  • Observer should no longer throw errors when trying to observe objects created via Object.create(null). (@kazupon)
  • Fixed an edge case in IE where text interpolations are not processed due to IE randomly splitting the text nodes into multiple adjacent ones.
  • #1778 fix incorrect warning for two-way binding on v-for alias
  • #1779 fix incorrect warning for v-ref on non-component elements
  • #1781 fix afterEnter hook firing before transition finishes
  • #1786 fix $event variable for v-on inline statement handlers with filters
  • #1791 avoid v-for re-rendering when using v-model on primitive values