轻量级 JavaScript 框架 Vue 2.1.7 发布了。
潜在的必须操作
为了修复一些错误,不得不介绍一些小的行为更改。
- 如果你是一个提供预编译的 dist 文件d的插件/组件的作者
It is recommended to re-compile the dist file using the latest versions of
vue-template-compiler
andvue-template-es2015-compiler
. The new generated code is backwards-compatible, but code generated by older versions of the compilers may not work properly with the latest runtime.Code generation changes that affect compatibility are very rare and we will avoid introducing similar changes in future patch releases.
- 如果使用<transition-group>的移动动画功能: you use
<transition-group>
‘s move animation feature:When fixing #4510 (ensure leave transitions and enter transitions triggered by the same state change are started in the same frame), we had to move the application of the
v-enter-active
andv-leave-active
classes to one frame after the application ofv-enter
andv-leave
. This should not affect existing usage of<transition>
, however if you are using<transition-group>
for moving animations, there is a minor adjustment required: you need to now addposition: absolute
to bothv-leave
andv-leave-active
(previously onlyv-leave-active
is sufficient). See updated moving animation example.
Improvements
- Improved stateful components instantiation performance by ~30%.
- From version 2.1.7 and up, you can directly use the CDN link https://unpkg.com/vue for the standalone build.
Fixed
- #4472 fix functional component multiple root nodes regression
- #4478 fix SVG foreignObject namespace regression
- #4484 unbind v-show if no longer present during patch
- #4494 ensure
value
for<option>
is always updated (@defcc via #4505) - #4497 fix
v-for
behavior with string value (@posva via #4499) - #4510 ensure leave transitions and enter transitions triggered by the same state change are started in the same frame
- #4514 fix
v-model
selected value update between0
and""
(@defcc via #4528) - #4518 change
Vue.config.ignoredElements
default value to be consistent with docs (@semenyukdmitry via #4518) - #4521 avoid checked state being overwritten before change event trigger
- #4529 support
v-bind
object syntax on scoped slots - #4530 fix special attributes (e.g.
value
) patching error when switching between dynamic and static bindings - #4533 fix hydration error caused by empty text nodes between
v-if
conditions - #4535 fix node removal error when patching elements with
v-text
(@defcc via #4548) - #4538 avoid casting empty string to Boolean when a prop expects both String and Boolean types (@fliptheweb via #4539)
Downloads