()
| 66 | @obx.shallow private items: IProp[] = []; |
| 67 | |
| 68 | @computed private get maps(): Map<string, Prop> { |
| 69 | const maps = new Map(); |
| 70 | if (this.items.length > 0) { |
| 71 | this.items.forEach((prop) => { |
| 72 | if (prop.key) { |
| 73 | maps.set(prop.key, prop); |
| 74 | } |
| 75 | }); |
| 76 | } |
| 77 | return maps; |
| 78 | } |
| 79 | |
| 80 | readonly path = []; |
| 81 |