* InsertBefore with transition. * * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb]
(el, target, vm, cb)
| 1056 | */ |
| 1057 | |
| 1058 | function beforeWithTransition(el, target, vm, cb) { |
| 1059 | applyTransition(el, 1, function () { |
| 1060 | before(el, target); |
| 1061 | }, vm, cb); |
| 1062 | } |
| 1063 | |
| 1064 | /** |
| 1065 | * Remove with transition. |
nothing calls this directly
no test coverage detected