vuejs reactivity with variable initiated in mounted function
I have a dynamic component building multiple select, the template : <template> <div> <b-field v-for="(key,index) in allSelects" :key="index" :label="key" > <b-select :placeholder="key" v-model="values[key]" > <option v-for="(value,index) in optionsValues(key)" :key="index" :value="value" > {{ value }} </option> </b-select> </b-field> </div> </template> and the script is <script> export default { name: ‘Test’, data () { return { allSelects:… Read More vuejs reactivity with variable initiated in mounted function