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