My application includes a simple combobox, and I am trying to set a default text message to display when there are no entries in the items props. To achieve this goal, I utilized the no-data-text prop by passing a specific variable to it.
<v-combobox
:items="someValues"
dark
color="white"
:no-data-text="noDataText"
></v-combobox>
I anticipated that clicking on the empty combobox would trigger my specified message to appear. In the past, I successfully used a similar method with select elements. How can I make the same behavior work with the combobox?