* @zh 获取组件数组(懒加载) * @en Get component array (lazy-loaded) * * @returns @zh 只读的组件数组 @en Readonly component array
()
| 268 | * @returns @zh 只读的组件数组 @en Readonly component array |
| 269 | */ |
| 270 | public get components(): readonly Component[] { |
| 271 | if (this._componentCache === null) { |
| 272 | this._rebuildComponentCache(); |
| 273 | } |
| 274 | return this._componentCache!; |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * @zh 从存储重建组件缓存 |
nothing calls this directly
no test coverage detected