0.12.16
New
-
New global method:
Vue.mixin()
.Apply a global mixin to all Vue instances. This is intended to make it easier for plugins to inject custom behavior. Not recommended in application code.
-
vm.$watch
can now accept expressions with filters:vm.$watch('msg | uppercase', ...)
Fixed
- Fixed a performance regression introduced in 0.12 which made filtering super large arrays (> 5000 items) very slow.
vm.$interpolate
now always returns a string.
Internals
Vue.config.optionMergeStrategies
is now exposed for plugin authors. (This is already in 1.0.0 series releases)