Vue.js: 1.0.3 Release

Release date:
October 29, 2015
Previous version:
1.0.2 (released October 29, 2015)
Magnitude:
79 Diff Delta
Contributors:
1 total committer
Data confidence:
Commits:

Top Contributors in 1.0.3

yyx990803

Directory Browser for 1.0.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

  • v-bind now support accepting an object without arguments, which would allow dynamic binding of multiple attributes:
  <div v-bind="{ id: someProp, 'other-attr': otherProp }"></div>

Note when using this syntax to bind class and style, only plain string values would work. - limitBy filter:

Limit the array to the first N items, as specified by the argument.

  <!-- only display first 10 items -->
  <div v-for="item in items | limitBy 10"></div>

Fixed

  • #1479 filterBy should no longer return duplicate objects when using multiple search keys.
  • User-defined component names should no longer be overwritten by option key names.
  • Fix edge case for v-for="(key, val) in obj" syntax where the key could be falsy. (@vprimachenko)
  • #1639 Fix title as prop edge case in IE10/11 (@fergaldoyle)