vue-treeselect 组件官方中文网站: https://www.vue-treeselect.cn/
需求背景: 在el-tabs内容中添加此组件出现被遮挡问题
通过文档查询解决方法
<treeselect
v-model="params.wardIds"
:options="hospitalWardTree"
value-consists-of="LEAF_PRIORITY"
placeholder="请选择(可多选)"
:multiple="true"
class="topSearchTree"
no-options-text="暂时没有内容"
no-children-text="暂时没有内容"
no-results-text="没有匹配内容"
:normalizer="normalizer"
:appendToBody="true"
/>
appendToBody属性设置为true 则可以解决被遮挡问题
标签:el,vue,遮挡,中文网站,组件,treeselect From: https://blog.51cto.com/u_15978456/7132365