Open agardes opened 1 year ago
Found out that options weren't being displayed because in the v-for loop, option and i are in the wrong order. That is the correct order :
option
i
<div v-expand="isExpanded" class="options expand"> <div v-for="(option, i) in configOptions" :key="'option-' + i" class="option" @click="setCurrentSelectedOption(option);" > {{ option.value }} </div> </div>
Found out that options weren't being displayed because in the v-for loop,
option
andi
are in the wrong order. That is the correct order :