Vuex - mapGetters 등이지만 파라미터에 의한 매핑 스토어에서 데이터를 가져오는 일반 필터 구성 요소를 생성하려고 합니다. 지금 제가 쓰고 있는 게mapGetters그렇게 ...mapGetters({ items: 'filters' }), 하지만 제가 매핑하고 있는 게터(getter)를 일반화할 수 있으면 좋겠습니다. props: { filterType: String }, computed: { ...mapGetters({ items: this.filterType }), } 이로 인해 다음과 같은 오류가 발생합니다. Cannot read property 'nombre' of undefined 제가 할 수 있는 건 computed: { items: function () { return this.$s..