I'm generating this vue template dynamically based on previously selected options, So depending on the number of check boxes a user selects from a previous step, I generate this template.
<template v-for="(items, index) in appliedPortfolioItems">
<div>
<h5> {{items.displayName}} {{items.availableBalance}}</h5>
<div class="row">
<p>{{items.coreSystemOption}}</p>
<div class="col s6">
<h6>Eligible Loan Amount</h6>
<h4>{{items.allowedAmount}}</h4>
</div>
<div class="col s6">
<h6>Enter Required Loan Amount</h6>
<div class="input-field">
<input type="text">
</div>
</div>
</div>
</div>
</template>
Please how do I access the value entered in each textbox via a v-model. For more context, the user needs to be able to enter a loan amount on every account they have chosen from previous step.