<docs> --- order: 1 title: zh-CN: 位置 en-US: Placement --- ## zh-CN 位置有 12 个方向。 ## en-US There are 12 placement options available. </docs> <template> <div id="components-a-tooltip-demo-placement"> <div :style="{ marginLeft: `${buttonWidth}px`, whiteSpace: 'nowrap' }"> <a-tooltip placement="topLeft"> <template #title> <span>prompt text</span> </template> <a-button>TL</a-button> </a-tooltip> <a-tooltip placement="top"> <template #title> <span>prompt text</span> </template> <a-button>Top</a-button> </a-tooltip> <a-tooltip placement="topRight"> <template #title> <span>prompt text</span> </template> <a-button>TR</a-button> </a-tooltip> </div> <div :style="{ width: `${buttonWidth}px`, float: 'left' }"> <a-tooltip placement="leftTop"> <template #title> <span>prompt text</span> </template> <a-button>LT</a-button> </a-tooltip> <a-tooltip placement="left"> <template #title> <span>prompt text</span> </template> <a-button>Left</a-button> </a-tooltip> <a-tooltip placement="leftBottom"> <template #title> <span>prompt text</span> </template> <a-button>LB</a-button> </a-tooltip> </div> <div :style="{ width: `${buttonWidth}px`, marginLeft: `${buttonWidth * 4 + 24}px` }"> <a-tooltip placement="rightTop"> <template #title> <span>prompt text</span> </template> <a-button>RT</a-button> </a-tooltip> <a-tooltip placement="right"> <template #title> <span>prompt text</span> </template> <a-button>Right</a-button> </a-tooltip> <a-tooltip placement="rightBottom"> <template #title> <span>prompt text</span> </template> <a-button>RB</a-button> </a-tooltip> </div> <div :style="{ marginLeft: `${buttonWidth}px`, clear: 'both', whiteSpace: 'nowrap' }"> <a-tooltip placement="bottomLeft"> <template #title> <span>prompt text</span> </template> <a-button>BL</a-button> </a-tooltip> <a-tooltip placement="bottom"> <template #title> <span>prompt text</span> </template> <a-button>Bottom</a-button> </a-tooltip> <a-tooltip placement="bottomRight"> <template #title> <span>prompt text</span> </template> <a-button>BR</a-button> </a-tooltip> </div> </div> </template> <script lang="ts"> import { defineComponent } from 'vue'; export default defineComponent({ setup() { return { buttonWidth: 70, }; }, }); </script> <style scoped> :deep(#components-a-tooltip-demo-placement) .ant-btn { width: 70px; text-align: center; padding: 0; margin-right: 8px; margin-bottom: 8px; } </style>