하위에서 스토어 변경을 트리거해도 스토어가 업데이트되지 않습니다. 부모 파일 html // Does not work (1) // Works below (2) 앱 버튼 컴포넌트에 의해 호출되는 함수 public goToSlide(increment) { const newIndex = this.orderIndex + increment; if (newIndex = this.deckSlides.length) { return; } this.setActiveSlide(newIndex); } private setActiveSlide(index) { this.slideIndex = index + 1; const { deckID, ID: slideID } = this.deckSlides[in..