如何在 vuetify 中将 v-data-table 转换为 v-select?

发布于 2025-01-09 15:13:12 字数 998 浏览 0 评论 0原文

我已经有一个 vuetify 的 v-data-table,我想使用 v-select 将其内容从数据表转换为下拉列表。怎么可能做出改变呢?

                      <v-data-table
                      dense
                      v-if="requester_details.credential_type == 'TEMPLATE'"
                      class="elevation-0"
                      hide-default-footer
                      :headers="templateResultHeaders"
                      @click:row="handleRowClickTemplate"
                      :items="GetAllTemplatesList"
                      :no-data-text="noDataText"
                      >
                      <template v-slot:[`item.template_name`]="{ item }">
                        <div>{{ item.template_name }}</div>
                      </template>
                      <template v-slot:[`item.Action`]="{}">
                        <v-icon color="primary">mdi-chevron-right</v-icon>
                      </template>
                    </v-data-table>

I already have a v-data-table of vuetify and i want to convert its contents from a data table to a drop down using v-select. How is it possible to do the change?

                      <v-data-table
                      dense
                      v-if="requester_details.credential_type == 'TEMPLATE'"
                      class="elevation-0"
                      hide-default-footer
                      :headers="templateResultHeaders"
                      @click:row="handleRowClickTemplate"
                      :items="GetAllTemplatesList"
                      :no-data-text="noDataText"
                      >
                      <template v-slot:[`item.template_name`]="{ item }">
                        <div>{{ item.template_name }}</div>
                      </template>
                      <template v-slot:[`item.Action`]="{}">
                        <v-icon color="primary">mdi-chevron-right</v-icon>
                      </template>
                    </v-data-table>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水染的天色ゝ 2025-01-16 15:13:12

做得很好,并且按预期工作。编写“返回对象”对于打开 v-select 字段的内容很重要

    <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>

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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文