当挂载popover组件的元素存在定位的时候, popover组件的content插槽的内容无法显示在预期的位置, 看了作者写的源码, 获取的是该组件default插槽的内容相对"视窗"的偏移值, 依靠这个"视窗"偏移去计算content内容的''文档''偏移值,似乎不甚合理.我也尝试着将该组件内的getBoundingClientRect().top 换成offsetTop后, 内容就显示在预期的位置了.
代码如下:
<template>
<div id="app" style="height: 100%">
<div style="position: absolute; top: 100px">
<popover placement="right">
<div slot="content" >
hello world
</div>
<div class="more_btn">
更多
</div>
</popover>
</div>
<div>
<popover placement="right">
<div slot="content" >
hello world
</div>
<div class="more_btn" style="width: 50px">
更多
</div>
</popover>
</div>
</div>
</template>
<script>
import { Popover } from 'vux'
export default {
name: 'app',
methods: {
},
components: {
Popover
}
}
</script>
<style lang="less">
@import '~vux/src/styles/reset.less';
</style>
4条答案
按热度按时间vaj7vani1#
作者的top与left是基于视图窗口的偏移,所以使用了 Popover 组件的元素的父元素以及父元素以上, body以下都不能设置position, 否则会top,left会相对的父元素计算位置就会偏移,建议作者在文档注明一下提示
ntjbwcob2#
如何解决这个问题啊?
szqfcxe23#
请问这个问题解决了吗
vhipe2zx4#
写了许多,发现点击弹出的对话框的z-index总是小于其他组件的z-index值。