* Append with transition. * * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb]
(el, target, vm, cb)
| 1041 | */ |
| 1042 | |
| 1043 | function appendWithTransition(el, target, vm, cb) { |
| 1044 | applyTransition(el, 1, function () { |
| 1045 | target.appendChild(el); |
| 1046 | }, vm, cb); |
| 1047 | } |
| 1048 | |
| 1049 | /** |
| 1050 | * InsertBefore with transition. |
nothing calls this directly
no test coverage detected