feat:render subview's change to apply listview's item change

This commit is contained in:
pengfei.zhou
2019-11-14 14:42:31 +08:00
parent 4dcc89497d
commit 1dcdfff97d
8 changed files with 165 additions and 73 deletions

View File

@@ -35,7 +35,7 @@ export function obj2Model(obj: Model): Model {
}
}
type _M = string | number | boolean | Modeling | { [index: string]: Model | undefined }
type _M = string | number | boolean | Modeling | { [index: string]: Model } | undefined
export type Model = _M | Array<_M>
export type Binder<T> = (v: T) => void