Skip to content

v0.8.8

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 20 Feb 23:47
· 3591 commits to main since this release
  • 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.