Vue

by Max Sinev

HTML

<div id="app">
  <select v-model="index">
     <option value="0" disabled selected>Please select...</option>
     <option :value="i+1" v-for="(option, i) in options">{{option}}</option>
  </select>
  <br>
  {{ test }}
  <button @click="index = 0">Clear</button>
</div>

Vue

new Vue({
  el: "#app",
  data: {
    index: 0, // In my setup this is a array with a lot of things, but just simplifying here
    options: ["Option 1", "Option 2"],
  }
})