如何删除自动完成组件中的 vuetify 组件类或下划线?

发布于 2025-01-12 23:44:29 字数 378 浏览 0 评论 0原文

我使用了 vuetify 的自动完成组件。我将删除组件的默认类或删除自动完成组件的下划线。

输入图片此处描述

或者删除此类:

在此处输入图像描述

有任何可能的方法吗?非常感谢任何帮助!先感谢您!

I used autocomplete component from vuetify. I am going to remove default class of the component or remove the underline of autocomplete component.

enter image description here

Or going to remove this class:

enter image description here

Are there any possible ways to do that? Any help is really appreacited! Thank you in advance!

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

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

发布评论

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

评论(1

榆西 2025-01-19 23:44:29

在模板部分,你必须这样写

 <v-container fluid>
        <v-row
          align="center"
        >
          </v-col>
          <v-col cols="12">
            <v-autocomplete
              v-model="values"
              :items="items"
              dense
              chips
              small-chips
              label="Solo"
              multiple
              solo
            ></v-autocomplete>
          </v-col>
        </v-row>
      </v-container>

在样式部分,你必须这样写

.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot {
    box-shadow: 0 0 0 0 !important;
}

这里 是一个活生生的例子

In the template section, you have to write like this

 <v-container fluid>
        <v-row
          align="center"
        >
          </v-col>
          <v-col cols="12">
            <v-autocomplete
              v-model="values"
              :items="items"
              dense
              chips
              small-chips
              label="Solo"
              multiple
              solo
            ></v-autocomplete>
          </v-col>
        </v-row>
      </v-container>

In style section you have to write like this

.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot {
    box-shadow: 0 0 0 0 !important;
}

here is the live example

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