onActivated(() => { this.searchRecordList.value = localStorage.getItem('searchRecord') ? JSON.parse(localStorage.getItem('searchRecord') as string) : [];this.getList(); window.addEventListener('storage', this.getItem); }); onDeactivated(() => { window.removeEventListener('storage', this.getItem); });
protected getItem = () => { this.searchRecordList.value = localStorage.getItem('searchRecord') ? JSON.parse(localStorage.getItem('searchRecord') as string) : []; };