()
| 150 | private _isMinimalRenderUnit?: boolean; |
| 151 | |
| 152 | get title(): string | IPublicTypeI18nData | ReactElement { |
| 153 | // string | i18nData | ReactElement |
| 154 | // TitleConfig title.label |
| 155 | if (isTitleConfig(this._title)) { |
| 156 | return (this._title?.label as any) || this.componentName; |
| 157 | } |
| 158 | return this._title || this.componentName; |
| 159 | } |
| 160 | |
| 161 | @computed get icon() { |
| 162 | // give Slot default icon |
nothing calls this directly
no test coverage detected