ant-design-vue遇到的问题

239 阅读1分钟

select等下拉框不随滚动而滚动,getPopupContainer无效

select等下拉框默认是衣服在 body 元素上的 ,因此推荐在 body 上面 添加滚动条

getPopupContainer 可以设置在 select 或者 a-config-provider 上,返回的是具有滚动条的元素,例如:

getPopupContainer(triggerNode){
  return document.getElementById('el_id') || triggerNode
},

但是此元素还需要是 position: relative;,加个这个就好了

#el_id {
  position: relative;
}