상태 업데이트에도 불구하고 vuex 구성 요소가 업데이트되지 않는 이유 페이지를 로드할 때 항목 목록을 가져온다. 원천 프로젝트의 출처는 온라인: optboxes 페이지; 저장(저장, 동작, 돌연변이, 게이터) optboxes페이지 HTTP 요청은 적절한 데이터 전송 및 반환: created(){ this.getOptboxes(); }, components: { 'optbox': OptboxComponent, }, methods: { getOptboxes() { optboxes.all().then((response) => { this.setOptboxes(response.data.output); }).catch(() = > { this.no_optbox_message = 'there is no optbo..