首页 > 解决方案 > 项目选择需要在vue js多选中点击IOS两次

问题描述

我在所有设备和网络上都使用了multiselect下拉菜单。Vue.js在 iOS 中,我们需要点击两次来选择一个选项。

标签: iosvue.jsmulti-select

解决方案


只需将以下内容code放在您的CSS 文件中以覆盖多选默认值css,因为这些类在iOS 设备中是冲突的:

.multiselect__option--highlight:after{
  display: none
}
.multiselect__option--selected:after{
  display: none
}
.multiselect__option--selected.multiselect__option--highlight:after{
  display: none
}

推荐阅读