Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 v-select 里面有一个额外的输入,这使得样式非常有问题。我的自定义组件没有添加它。我很确定这是一些 vuetify 的东西。有人知道如何摆脱它吗?
根据我的经验,没有 Vuetify 道具可以删除它,但您可以将它的显示设置为none.
none
如果要全局删除它,只需将此选择器添加到主样式文件中:
.v-select .v-select__selections input { display: none; }
::v-deep您可以通过选择器指定它,如果您在范围样式标记中,甚至可以使用它。
::v-deep