1
It is possible to make a v-for
using only a total number?
Example:
I would pass a variable with value 10
, it would loop from 1 to 10, like the JS example below:
for(var i = 1; i <= num_parcelas; i++){
mostrar += "<option value='" + i + "'>" + i + "</option>";
}