[Vuejs]-How can i convert v-data-table to v-select in vuetify?

0👍

Well did this and it works as expected. Writing "return object" is important to open the content of the v-select fields

    <v-select
  v-if="requester_details.credential_type == 'TEMPLATE'"
  class="FontSize field_height field_label_size"
  dense
  placeholder="Template items"
  outlined
  :items="GetAllTemplatesList"
  item-text="template_name"
  @change="handleRowClickTemplate"
  return-object
>
</v-select>

Leave a comment