({props})
| 381 | log.push(props.name + ' afterUpdate') |
| 382 | }, |
| 383 | afterMount ({props}) { |
| 384 | log.push(props.name + ' afterMount') |
| 385 | }, |
| 386 | beforeUnmount ({props}, el) { |
| 387 | log.push(props.name + ' beforeUnmount') |
| 388 | } |
nothing calls this directly
no test coverage detected