Customizing item-text in v-select

前端 未结 5 646
情书的邮戳
情书的邮戳 2020-12-23 16:21

Please tell me if we can customize item-text for v-select ?

I want customize each item in v-select, something like this :<

5条回答
  •  不知归路
    2020-12-23 16:48

    Slot removes autoselect on focus.

    item-text tye can be: string | array | function

    then we can make:

    :item-text="text"
    

    and

    methods: {
      text: item => item.name + ' — ' + item.description
    }
    

提交回复
热议问题