mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
feat(data-source): 数据源新增setValue方法
This commit is contained in:
parent
059c0056c4
commit
8d111ea976
@ -122,6 +122,10 @@ export default class DataSource<T extends DataSourceSchema = DataSourceSchema> e
|
||||
this.emit('change', changeEvent);
|
||||
}
|
||||
|
||||
public setValue(path: string, data: any) {
|
||||
return this.setData(data, path);
|
||||
}
|
||||
|
||||
public onDataChange(path: string, callback: (newVal: any) => void) {
|
||||
this.#observedData.on(path, callback);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user