ant design vue中a-tree-select的使用注意
当下拉的内容较多的时候,没有使用:dropdown-style="{ maxHeight: '300px', overflow: 'auto' }"的shi xia
·
当下拉的内容较多的时候,没有使用:dropdown-style="{ maxHeight: '300px', overflow: 'auto' }"的效果,会占满屏幕
使用:dropdown-style="{ maxHeight: '300px', overflow: 'auto' }"之后的效果:就会按照设置的高度来
出现以下的问题: 滚动条滚动的时候,下拉框不固定
解决方案: 添加下面的代码
:getPopupContainer="
triggerNode => {
return triggerNode.parentNode || document.body;
}"
整体如图:
更多推荐
已为社区贡献9条内容
所有评论(0)