* 获取指定 path 的属性模型实例, * 注:导出时,不同于普通属性,该属性并不挂载在 props 之下,而是与 props 同级 * @param path 属性路径,支持 a / a.b / a.0 等格式 * @returns
(path: string)
| 480 | * @returns |
| 481 | */ |
| 482 | getExtraPropValue(path: string): any { |
| 483 | return this.getExtraProp(path)?.getValue(); |
| 484 | } |
| 485 | |
| 486 | /** |
| 487 | * 设置指定 path 的属性模型实例值 |
nothing calls this directly
no test coverage detected