(vnode)
| 479 | }, |
| 480 | |
| 481 | clone(vnode) { |
| 482 | const hooks = resolveTransitionHooks( |
| 483 | vnode, |
| 484 | props, |
| 485 | state, |
| 486 | instance, |
| 487 | postClone, |
| 488 | ) |
| 489 | if (postClone) postClone(hooks) |
| 490 | return hooks |
| 491 | }, |
| 492 | } |
| 493 | |
| 494 | return hooks |
nothing calls this directly
no test coverage detected