iOS 13 Popup 组件与 Field 组件一起使用时,输入框聚焦后 DOM 不弹起与光标消失

461 阅读1分钟

加入这段css代码

<style scoped lang="less">
/* fixed iOS 13 Popup 组件与 Field 组件一起使用时,输入框聚焦后 DOM 不弹起与光标消失 */
/deep/.van-popup {
  position: absolute !important;
}
/deep/.van-popup--center {
  transform: unset !important;
  position: fixed !important;
  top: 50%;
  left: 50%;
  margin-left: -40vw;
  margin-top: -42%;
}
</style>