Skip to content

0.12.16

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 25 Sep 20:23
· 3593 commits to main since this release

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)