Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 11, 2020 06:10
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/0c422b4e176758520f2c63d17e76de2c to your computer and use it in GitHub Desktop.
Save PKTseng/0c422b4e176758520f2c63d17e76de2c to your computer and use it in GitHub Desktop.
select-月份
<div id="app">
<select v-model="selectMonth">
<option v-for="month in 12" >{{month}}</option>
</select>
<h1>{{selectMonth}}</h1>
</div>
new Vue({
el:"#app",
data:{
selectMonth: 1,
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment