As we discussed before, we should support all top-level DOM operation APIs directly to improve the performance. I have already achieved it in Weex runtime, include the following methods:
Format: TAKS -> METHOD * createBody -> callCreateBody * addElement -> callAddElement * removeElement -> callRemoveElement * moveElement -> callMoveElement * updateAttrs -> callUpdateAttrs * updateStyle -> callUpdateStyle * addEvent -> callAddEvent * removeEvent -> callRemoveEvent Our legacy js framework (known as .we) already support this feature. *However, the Vue 2.0 should also support the corresponding feature as well.*
