vue.js 를 이용한 웹 앱 구현 - 프론트엔드 구축(2), Detail 파일의 script 부분
export default { data() { return { productId: 0, productDetail: {}, productImage: [], total: 0, totalPrice: 0 }; }, created() { this.productId = this.$route.query.product_id; this.getProductDetail(); this.getProductImage(); }, methods: { calculatePrice(cnt) { let total = this.total + cnt; if (total 0) { this.productDetail = productDetail[0]; this.totalPrice = this.totalPrice = this.productDetail..