fix loading overflow:hidden removal issue (#469)

pull/468/head
杨奕 2016-10-18 12:16:15 +08:00 committed by FuryBean
parent 4bdfcec9d7
commit 4495877dff
2 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,7 @@
- 修复 Autocomplete 的弹出框不会消失 #439
- 修复 DatePicker 弹出框样式溢出边框 #318
- 新增 Input 图标的点击事件 #444
- 修复 Loading 关闭后有几率滚动失效的问题
#### 非兼容性更新

View File

@ -100,7 +100,9 @@ exports.install = Vue => {
},
update: function(el, binding) {
toggleLoading(el, binding);
if (binding.oldValue !== binding.value) {
toggleLoading(el, binding);
}
},
unbind: function(el, binding) {