代码:https://github.com/MrErHu/dom-align-bugfix-demo(url: http://localhost:3000/bugfix) 原始状态如下:  source node: - width: 100 - height: 40: - marginTop: 30 taget node: - width: 100 - height: 40 - left: 0 - right: 0 当配置: ``` { points: ['bc', 'tc'], offset: [0, -10], targetOffset: [0, 0], overflow: { adjustX: true, adjustY: true, } } ``` 理论上Y轴无法显示,source `node的points应该改变为` ['tc', 'bc']`,对应的offset: [0, 10]。 但是实际情况是: 