* 获取指定 path 的属性模型实例, * 注:导出时,不同于普通属性,该属性并不挂载在 props 之下,而是与 props 同级 * * get extra prop by path, an extra prop means a prop not exists in the `props` * but as siblint of the `props` * @param path 属性路径,支持 a / a.b / a.0 等格式 * @param createIfNone 当没有属性的时候,是否创建一个属性
(path: string, createIfNone?: boolean)
| 318 | * @param createIfNone 当没有属性的时候,是否创建一个属性 |
| 319 | */ |
| 320 | getExtraProp(path: string, createIfNone?: boolean): Prop | null; |
| 321 | |
| 322 | /** |
| 323 | * 获取指定 path 的属性模型实例, |
no outgoing calls
no test coverage detected