mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
31 lines
861 B
JavaScript
31 lines
861 B
JavaScript
import { nextTick } from 'vue';
|
|
const antvRef = {
|
|
beforeMount: function bind(el, binding, vnode) {
|
|
nextTick(function() {
|
|
binding.value(el, vnode.key);
|
|
});
|
|
binding.value(el, vnode.key);
|
|
},
|
|
updated: function update(el, binding, vnode, oldVnode) {
|
|
if (oldVnode && oldVnode.directives) {
|
|
let oldBinding = oldVnode.directives.find(function(directive) {
|
|
return directive === antvRef;
|
|
});
|
|
if (oldBinding && oldBinding.value !== binding.value) {
|
|
oldBinding && oldBinding.value(null, oldVnode.key);
|
|
binding.value(el, vnode.key);
|
|
return;
|
|
}
|
|
}
|
|
// Should not have this situation
|
|
if (vnode.el !== oldVnode.el) {
|
|
binding.value(el, vnode.key);
|
|
}
|
|
},
|
|
unmounted: function unbind(el, binding, vnode) {
|
|
binding.value(null, vnode.key);
|
|
},
|
|
};
|
|
|
|
export default antvRef;
|