Vue.js: v2.0.0-rc.3 Release

Release date:
August 20, 2016
Previous version:
v2.0.0-rc.2 (released August 16, 2016)
Magnitude:
640 Diff Delta
Contributors:
1 total committer
Data confidence:
Commits:

Top Contributors in v2.0.0-rc.3

yyx990803

Directory Browser for v2.0.0-rc.3

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

New

  • Vue.set and Vue.delete is now also exposed on Vue instances as this.$set and this.$delete. Note this is different from the 1.x counterparts: they are simply aliases to the global API.

This change eliminates the need to import/require Vue just to access these two methods, and makes it easier to pre-compile standalone Vue components. - Added a warning when mounting the root instance to body or html. This is no longer recommended in 2.0.

Fixed

  • #3455 fix refs missing on empty component root
  • #3468 ensure v-model changes take effect before v-on listeners
  • #3472 fix incorrect name option warning
  • #3474 fix transition insert hook duplicate invocation on slot nodes
  • #3478 fix v-on with chained key modifiers
  • #3484 fix v-show should be able to overwrite inline display: none
  • #3488 fix v-show transition enter hook when using raw render function / JSX