Vue select 下拉菜单

vue

1、html

<div id="app-8">

<select v-model="selected">

<option v-for="option in options" v-bind:value="option.value">

{{ option.text }}

</option>

</select>

<span>Selected: {{ selected }}</span>

</div>

2、script

var app8 = new Vue({

el: '#app-8',

data: {

selected: 'A',

options: [

{ text: 'One', value: 'A' },

{ text: 'Two', value: 'B' },

{ text: 'Three', value: 'C' }

]

}

})

以上是 Vue select 下拉菜单 的全部内容, 来源链接: utcz.com/z/380233.html

回到顶部