Vuetify: [Bug Report] VOverflowBtn shows item-value not item-text

Created on 7 Jul 2018  路  5Comments  路  Source: vuetifyjs/vuetify

Versions and Environment

Vuetify: 1.1.1
Vue: 2.5.16
Browsers: Firefox 62.0
OS: Windows 10

Steps to reproduce

  • Create a v-overflow-btn with items that have both text and value parameters
  • set item-value and item-text props
  • Use the component to select an item

Expected Behavior

The string stored in the item-text field is displayed on the component

Actual Behavior

The value of item-value is displayed

Reproduction Link

https://codepen.io/mjwalds/pen/bKXgWr?editors=1010

bug

Most helpful comment

I'm having the same issue. Is there an update on this one too?

Thanks.

All 5 comments

same issue, will this be solved soon?

How is this workaround?

add return-object

v-model="select"
:items="items"
item-text="state"
item-value="abbr"
single-line
return-object

default "select" change to object

return {
select: { state: 'Georgia', abbr: 'GA' },
items: [
{ state: 'Florida', abbr: 'FL' },
{ state: 'Georgia', abbr: 'GA' },
{ state: 'Nebraska', abbr: 'NE' },
{ state: 'California', abbr: 'CA' },
{ state: 'New York', abbr: 'NY' }
]
}

Any news on this one?

Thanks.

I'm having the same issue. Is there an update on this one too?

Thanks.

Any news ?

Was this page helpful?
0 / 5 - 0 ratings