12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Vuetify] v-selectで[object, object] と表示された時の解決法

Last updated at Posted at 2020-06-01

現象

items: [{id:1, text: 'テキスト'},{id:2, text: 'テキスト2'},{id:3, text: 'テキスト3'}]

上記のようなオブジェクトの配列をv-selectで表示。


<v-select
 :items="items"
/>

すると以下のように [object, object] と表示される。
スクリーンショット 2020-06-01 16.22.39.png

解決策

vuetifyの公式ページにオブジェクト使用時の記述があった。
スクリーンショット 2020-06-01 16.43.53.png

items-textを使う

item-text="オブジェクトのプロパティ名"使うことで解決


<v-select
 item-text="text"
 :items="items"
/>
スクリーンショット 2020-06-01 16.23.15.png

items-valueも使って値の指定を行う

あくまで表示はできたが、フィルタリングする時など、表示と裏で保持する値をそれぞれ分けたい場合は、 items-value を使う。

実際に値を確認するために、 @change="changedValue" を追記し、select選択時にconsole.logで値を出力する。


<v-select
 item-text="text"
 item-value="id"
 :items="items"
 @change="changedValue"
/>

methods: {
 changedValue(value) {
  console.log('value', value)
 }
}

表示
スクリーンショット 2020-06-01 16.23.15.png

スクリーンショット 2020-06-01 16.51.44.png

無事、表示と値を分けることができたので解決。

参考文献

12
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?