mirror of https://github.com/ElemeFE/element
fix loading overflow:hidden removal issue (#469)
parent
4bdfcec9d7
commit
4495877dff
|
@ -12,6 +12,7 @@
|
|||
- 修复 Autocomplete 的弹出框不会消失 #439
|
||||
- 修复 DatePicker 弹出框样式溢出边框 #318
|
||||
- 新增 Input 图标的点击事件 #444
|
||||
- 修复 Loading 关闭后有几率滚动失效的问题
|
||||
|
||||
#### 非兼容性更新
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue