* 批量注册组件
(components: BaseComponent[])
| 226 | * 批量注册组件 |
| 227 | */ |
| 228 | public async registerComponents(components: BaseComponent[]): Promise<void> { |
| 229 | for (const component of components) { |
| 230 | await this.registerComponent(component); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * 批量移除组件 |
nothing calls this directly
no test coverage detected