|
@@ -3,9 +3,9 @@
|
|
h3.item-name {{ item.displayName }}
|
|
h3.item-name {{ item.displayName }}
|
|
input.item-quantity(type='number' min='1' :value='item.quantity')
|
|
input.item-quantity(type='number' min='1' :value='item.quantity')
|
|
span.item-x x
|
|
span.item-x x
|
|
- span.item-price {{ (item.price || 1) | currency(...options) }}
|
|
|
|
|
|
+ span.item-price {{ item.price | currency(...options) }}
|
|
span.item-equals =
|
|
span.item-equals =
|
|
- span.item-subtotal {{ ((item.price || 1) * (item.quantity || 1)) | currency(...options) }}
|
|
|
|
|
|
+ span.item-subtotal {{ (item.price * (item.quantity || 1)) | currency(...options) }}
|
|
.cart-item-options-wrapper
|
|
.cart-item-options-wrapper
|
|
.cart-item-options
|
|
.cart-item-options
|
|
.cart-item-option(class='fa fa-plus' @click='onClickIncrement')
|
|
.cart-item-option(class='fa fa-plus' @click='onClickIncrement')
|