<script>
import { ElMessageBox } from 'element-plus'
// 이쪽 컴포넌트로 와서 주문처리 후
// 다시 다른페이지로 이동
// 화면이 없음!!
export default {
created(){
console.log( this.$route.params.code );
console.log( this.$route.params.count );
ElMessageBox.alert( '상품명: '+this.$route.params.name+' / 개수: '+this.$route.params.count+'개 '+
'/ 결제금액: '+this.$route.params.count * this.$route.params.price+'원 결제 완료' , '결제완료', {
confirmButtonText: 'OK',
callback: (action) => {
console.log(action);
this.$router.push({path:'/shop'});
},
});
}
}
</script>