如何使用vueJs和bootsrap将值设置为<option>?

时间:2018-07-11 07:57:14

标签: vue.js bootstrap-vue

如何使用v-for设置选项中的值?这是我的代码,但是在添加值时,我在value="{{data.id}}"上遇到了错误。

这些是我要在选择选项中设置的列表。

  [{"id":1,"name":"test1"},{"id":2,"name":"test2"},{"id":3,"name":"test3"}]

enter image description here

1 个答案:

答案 0 :(得分:0)

您应该使用{{data[index].id}},因为它是一个JS对象。

此外,下次,粘贴代码,以便我们直接对其进行编辑/测试。 :)