Added allowItemRemoval prop to cart 2
This commit is contained in:
parent
45c9279333
commit
4cc415af6d
1 changed files with 4 additions and 0 deletions
|
|
@ -24,6 +24,7 @@
|
|||
:class="[this.packageCartItems ? 'vaps' : '']">
|
||||
<span>{{ cartItem.name }}</span>
|
||||
<textLink
|
||||
v-if="allowItemRemoval"
|
||||
ref="removeLink"
|
||||
linkType="text"
|
||||
:text="removeLinkText"
|
||||
|
|
@ -39,6 +40,7 @@
|
|||
:key="i">
|
||||
<span>{{ cartItem.name }}</span>
|
||||
<textLink
|
||||
v-if="allowItemRemoval"
|
||||
ref="removeLink"
|
||||
linkType="text"
|
||||
:text="removeLinkText"
|
||||
|
|
@ -64,6 +66,7 @@
|
|||
<div v-if="premiumAppointmentDiscountCartItem">
|
||||
<span>{{ premiumAppointmentDiscountCartItem.name }}</span>
|
||||
<textLink
|
||||
v-if="allowItemRemoval"
|
||||
ref="removeLink"
|
||||
linkType="text"
|
||||
:text="removeLinkText"
|
||||
|
|
@ -122,6 +125,7 @@ export default {
|
|||
damage: Object,
|
||||
servicePackageOptionsCmsName: String,
|
||||
availableLineItems: Object,
|
||||
allowItemRemoval: Boolean,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in a new issue