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-model now properly support <select> with multiple attribute. Thanks to @duckbox !
v-attr now properly handles boolean attributes e.g. disabled. Thanks to @th0r !
text binding now output Objects and Arrays via JSON.stringify instead of blank string. Thanks to @duckbox !
v-repeat can now deal with Arrays of primitive values. doc
Added a rough implementation for the plugin interface. doc
Added some protection for common template XSS attacks
Observed Arrays now also has a set() method, which is essentially an alias of replace(), only for semantic purposes.
v0.8.5b patch
removed isLiteral option for custom directives. Now custom directives without an update method will simply be treated as literal.
reverted the behavior that when a repeated VM is $destroyed it would remove its data from bound Array, as this would cause trouble when having nested repeat structures. The advice here is never manually $destroy a repeated instance; always do so by manipulating the Array data.