Nuxt 가져오기 내에서 Vuex 작업이 "함수가 아님" 방금 내 Nuxt 페이지 중 하나에 오류 처리를 도입했는데, 액션이 매핑되어 내부에서 호출되었습니다.fetcha not function 오류를 발생시킵니다.이 경우,try/catch블록이 없습니다.예상대로 동작하고, 에러는 전혀 없습니다. 다음은 필수 부품까지 분해한 구성 요소입니다. export default { name: 'ViewArticle', async fetch ({ error }) { try { await this.fetchArticle({ articleSlug: this.articleSlug }) } catch (err) { error({ statusCode: 404, message: 'May the force be with you'..