gpt4 book ai didi

javascript - Vue.js 动态下拉

转载 作者:搜寻专家 更新时间:2023-10-30 22:15:10 25 4
gpt4 key购买 nike

我如何在 vue 中制作动态下拉菜单,不确定我做错了什么。

在我的 html 中我有...

<div id="app">
<select v-model="selected">
<option disabled value="">Please select one</option>
<option v-for="item in selected"></option>
</select>

我的 js 看起来像....

new Vue({
el: '#app',
data: {
selected: ["Apache", "Cochise"],
}
})

过滤器看起来像这样 enter image description here

编辑:这些值出现在检查器的 html DOM 树中 enter image description here

但不在下拉列表中 enter image description here

最佳答案

试试这个。

new Vue({
el: '#app',
data: {
filters: filters,
selectedValue: null
}
})

<div id="app">
<select v-model="selectedValue">
<option disabled value="">Please select one</option>
<option v-for="item in filters" :value="item">{{item}}</option>
</select>
</div>

Example .

注意:对于 future 的读者,还有一个问题是 text interpolation needed to be customized 的正常分隔符在@captnvitman 的环境中。

关于javascript - Vue.js 动态下拉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43193721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com