vue 구성 요소의 vuex 저장소에서 응답 에이잭스를 가져오려면 어떻게 해야 합니까? 내 컴포넌트는 다음과 같습니다. ... 다음 코드:this.addProduct(this.filters)addProduct 메서드 및 모듈 vuex를 호출합니다. 모듈 vuex는 다음과 같습니다. import { set } from 'vue' import product from '../../api/product' import * as types from '../mutation-types' // initial state const state = { statusAddProduct: null } // getters const getters = { getStatusAddProduct: state => state.statusAd..