gpt4 book ai didi

vue.js - 如何使附加项目在 v-select vuetify 中始终可见

转载 作者:行者123 更新时间:2023-12-04 02:29:31 26 4
gpt4 key购买 nike

我有一个 vuetify v-select 下拉列表。
在里面我做了一个插槽#append-item,其中我有一个按钮“验证”
当我在下拉列表中滚动时,我希望该按钮始终可见。
enter image description here

最佳答案

用带有 append 的 div 包裹你的按钮类(class)名称 :

 <template #append-item>
<div class="append">
<v-btn color="primary">valider</v-btn>
</div>
</template>
该类应具有以下 css 规则:
.append{
position:sticky;
bottom:8px;
width:100%;
display:flex;
justify-content :center;
background :white;

}
LIVE DEMO

关于vue.js - 如何使附加项目在 v-select vuetify 中始终可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65237657/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com