Vue.js: v0.8.8 Release

Release date:
February 20, 2014
Previous version:
v0.8.7 (released February 20, 2014)
Magnitude:
181 Diff Delta
Contributors:
1 total committer
Data confidence:
Commits:

Top Contributors in v0.8.8

yyx990803

Directory Browser for v0.8.8

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-repeat optimization: now when reseting the Array, Vue.js performs diffing to find out if the new Array contains any data from the old Array. For any existing data, the associated VM and DOM node will be reused. This greatly improves performance when the repeated VM itself has a complicated inner structure.
    • v-repeat can now iterate over Objects too! doc
    • Component constructors created from Vue.extend can now also add more private assets using asset registration methods similar to their global counterparts. doc
    • Original HTML content of a component node will be inserted at {{>yield}} inside templates. doc
    • add v-data for inline data. doc
    • v-style now also accepts a value without argument. The value will be used to set el.style.cssText.
  • Fixed
    • When the bound value of v-model does not exist in data, the inline value attribute will be respected and synced into data.