(isActive: boolean)
| 56 | |
| 57 | @Watch('active') |
| 58 | changeActive(isActive: boolean) { |
| 59 | if (isActive) { |
| 60 | this.prepareLazyLoaded(); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | private prepareLazyLoaded(): Promise<HTMLElement | undefined> { |
| 65 | if (!this.loaded && this.component != null) { |
nothing calls this directly
no test coverage detected