项目选择需要在 vue js 多选中单击 IOS 两次
Item selections needs two clicks on IOS in vue js multiselect
我在 Vue.js
中使用了 multiselect
下拉菜单,它在所有设备和网络上都能正常工作。在 iOS 中,我们需要点击两次才能 select 一个选项。
只需将以下 code
放入您的 CSS 文件 以覆盖 multiselect 默认值 css
,因为这些 类 在 iOS device 中存在冲突:
.multiselect__option--highlight:after{
display: none
}
.multiselect__option--selected:after{
display: none
}
.multiselect__option--selected.multiselect__option--highlight:after{
display: none
}
我在 Vue.js
中使用了 multiselect
下拉菜单,它在所有设备和网络上都能正常工作。在 iOS 中,我们需要点击两次才能 select 一个选项。
只需将以下 code
放入您的 CSS 文件 以覆盖 multiselect 默认值 css
,因为这些 类 在 iOS device 中存在冲突:
.multiselect__option--highlight:after{
display: none
}
.multiselect__option--selected:after{
display: none
}
.multiselect__option--selected.multiselect__option--highlight:after{
display: none
}