* 获取指定 path 的属性模型实例 * @param path 属性路径,支持 a / a.b / a.0 等格式 * @returns
(path: string)
| 45 | * @returns |
| 46 | */ |
| 47 | getProp(path: string): IPublicModelProp | null { |
| 48 | return ShellProp.create(this[propsSymbol].getProp(path)); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * 获取指定 path 的属性模型实例值 |
no test coverage detected