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) : [];
    };

  

posted on 2024-04-30 15:31  北极熊的菜  阅读(4)  评论(0编辑  收藏  举报