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

How to position one element under another Buefy navbar

I have problem in positioning two elements below each other in Buefy-Vue. Currently it works, but if I resize website it breaks because name is set as static. How do I make this responsive? Thank you Code: <img style="margin-left: 20%;" class="mainLogo rotate" src="./assets/logo.svg" /> <h1 class="name first" >Name</h1> <p class="undername second" >Text I want under… Read More How to position one element under another Buefy navbar