For example, how could I make these values receive the data I type from the keyboard?
<script type="text/x-template" id="quantity-changer-template"> <div :class="`quantity control-group ${errors.has(controlName) ? 'has-error' : ''}`"> <label class="required">{{ __('shop::app.products.quantity') }}</label> <button type="button" class="decrease" @click="decreaseQty()">-</button> <input :value="qty" class="control" :name="controlName" :v-validate="validations" data-vv-as=""{{ __('shop::app.products.quantity') }}"" /> <button type="button" class="increase" @click="increaseQty()">+</button> <span class="control-error" v-if="errors.has(controlName)">@{{ errors.first(controlName) }}</span> </div> </script>Without :value=qty can send data from keyboard but increase and decrease.. will not work