I want to retain the selected tree node hence I wanted to save the selected treenode in localstorage but I see this following error:
If anyone knows the solution for this?
code: component.ts file
nodeSelect(evt:any): void {
this.selected = evt.node;
this.storage.set(STORAGE_KEY1, this.selected);
this.dataService.passValue(this.selected);
}