Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Last active August 11, 2020 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PKTseng/bb8ec6101b2f5a4cffca6459e780534d to your computer and use it in GitHub Desktop.
Save PKTseng/bb8ec6101b2f5a4cffca6459e780534d to your computer and use it in GitHub Desktop.
select-arry
<div id="app">
<select>
<option v-for="number in numbers" :value="number">{{number}}</option>
</select>
</div>
new Vue({
el:"#app",
data:{
numbers: [2020, 2021, 2022],
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment