Quantity Updated
This commit is contained in:
parent
9c4340936f
commit
dd69efe51c
|
|
@ -244,7 +244,9 @@
|
|||
},
|
||||
|
||||
mounted: function() {
|
||||
this.$refs.quantityChanger.value = this.minQuantity;
|
||||
this.$refs.quantityChanger.value = this.qty > this.minQuantity
|
||||
? this.qty
|
||||
: this.minQuantity;
|
||||
},
|
||||
|
||||
watch: {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"/js/velocity.js": "/js/velocity.js?id=bc96099cee58b3db618f",
|
||||
"/js/velocity.js": "/js/velocity.js?id=2fe1b3c650803a0782b3",
|
||||
"/js/velocity-core.js": "/js/velocity-core.js?id=5c0fe2bf195ee94576fd",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=4322502d80a0e4a0affd",
|
||||
"/css/velocity.css": "/css/velocity.css?id=b5766995aee5d5324ddd"
|
||||
|
|
|
|||
|
|
@ -73,7 +73,9 @@ export default {
|
|||
},
|
||||
|
||||
mounted: function() {
|
||||
this.$refs.quantityChanger.value = this.minQuantity;
|
||||
this.$refs.quantityChanger.value = this.qty > this.minQuantity
|
||||
? this.qty
|
||||
: this.minQuantity;
|
||||
},
|
||||
|
||||
watch: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue