angular signal update

agnusdei·2023년 9월 27일
0
this.notices.update((notices) => {
      const index = notices.findIndex((notice) => notice.id === updated.id);
      notices[index].isPinned = updated.isPinned;
      return notices;
    });
 selectedPage(ev: any) {
    this.pageInfo.update((pageInfo) => {
      return { ...pageInfo, currentPage: ev };
    });
  }

0개의 댓글