我是 vuetify 的新手,我被困在如何正确使用 v-select 上。我将选择值从 API 拉到名为 FormatTypes 的存储中,如下所示:
[{"id":5,"formatlabel":"RDBMS Table or View"}
,{"id":6,"formatlabel":"Microsoft Access"}
....
,{"id":23,"formatlabel":"ArcGIS for Server image services"}]
我的 v 选择:
<v-select font-weight-regular subtitle-1
v-model=dataset.formattypeid
:name="FormatTypes"
:items="FormatTypes"
:item-value="FormatTypes.id"
:item-text="FormatTypes.formatlabel"
:label="FormatTypeLbl"
:outlined=true
>
我已经使用了 item-text/item-value 道具,但我仍然在显示中获得“object Object”。