JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<main>
  <select v-model="val">
  <option v-for="opt in options" v-text="opt" :value="opt"></option>
  </select>
  
  <button @click="setOptions">set options</button>
</main>

JavaScript

new Vue({
  el: 'main',
  data: {
  	val: 'bin',
    options: [],
  },
  
  methods: {
  	setOptions() {
    	this.options = ['foo', 'bar', 'bin'];
    }
  }
});