![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/vue/src/platforms/weex/runtime/modules/ |
/* @flow */ import { extend } from 'shared/util' function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) { if (!oldVnode.data.attrs && !vnode.data.attrs) { return } let key, cur, old const elm = vnode.elm const oldAttrs = oldVnode.data.attrs || {} let attrs = vnode.data.attrs || {} // clone observed objects, as the user probably wants to mutate it if (attrs.__ob__) { attrs = vnode.data.attrs = extend({}, attrs) } const supportBatchUpdate = typeof elm.setAttrs === 'function' const batchedAttrs = {} for (key in attrs) { cur = attrs[key] old = oldAttrs[key] if (old !== cur) { supportBatchUpdate ? (batchedAttrs[key] = cur) : elm.setAttr(key, cur) } } for (key in oldAttrs) { if (attrs[key] == null) { supportBatchUpdate ? (batchedAttrs[key] = undefined) : elm.setAttr(key) } } if (supportBatchUpdate) { elm.setAttrs(batchedAttrs) } } export default { create: updateAttrs, update: updateAttrs }