mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
36 lines
613 B
JavaScript
36 lines
613 B
JavaScript
const autoAdjustOverflow = {
|
|
adjustX: 1,
|
|
adjustY: 1,
|
|
}
|
|
|
|
const targetOffset = [0, 0]
|
|
|
|
const placements = {
|
|
bottomLeft: {
|
|
points: ['tl', 'tl'],
|
|
overflow: autoAdjustOverflow,
|
|
offset: [0, -3],
|
|
targetOffset,
|
|
},
|
|
bottomRight: {
|
|
points: ['tr', 'tr'],
|
|
overflow: autoAdjustOverflow,
|
|
offset: [0, -3],
|
|
targetOffset,
|
|
},
|
|
topRight: {
|
|
points: ['br', 'br'],
|
|
overflow: autoAdjustOverflow,
|
|
offset: [0, 3],
|
|
targetOffset,
|
|
},
|
|
topLeft: {
|
|
points: ['bl', 'bl'],
|
|
overflow: autoAdjustOverflow,
|
|
offset: [0, 3],
|
|
targetOffset,
|
|
},
|
|
}
|
|
|
|
export default placements
|