You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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