vue에서 getters로 파라미터를 송신하는 방법 카트의 재고와 수량을 확인할 수 있는 게터가 있습니다.여기 나의 getters.js: export const checkStock = (state, productID) => { let stockAvailable = true; state.cart.forEach(item => { if(item.product.id == productID) { if(item.product.attributes.stock (productId) => { // call the checkStockAvailability here let stockAvailable = true; state.cart.forEach(item => { if(item.product.id == productID) {..