* Remove with transition. * * @param {Element} el * @param {Vue} vm * @param {Function} [cb]
(el, vm, cb)
| 1070 | */ |
| 1071 | |
| 1072 | function removeWithTransition(el, vm, cb) { |
| 1073 | applyTransition(el, -1, function () { |
| 1074 | remove(el); |
| 1075 | }, vm, cb); |
| 1076 | } |
| 1077 | |
| 1078 | /** |
| 1079 | * Apply transitions with an operation callback. |
no test coverage detected