()
| 65 | |
| 66 | @computed |
| 67 | get title() { |
| 68 | const t = this.getExtraProp('title') |
| 69 | if (t) { |
| 70 | const v = t.getAsString() |
| 71 | if (v) { |
| 72 | return v |
| 73 | } |
| 74 | } |
| 75 | return this.componentMeta.title |
| 76 | } |
| 77 | |
| 78 | get icon() { |
| 79 | return this.componentMeta.icon |
nothing calls this directly
no test coverage detected