---
order: 8
title:
zh-CN: 弹出位置
en-US: Placement
---
## zh-CN
可以通过 `placement` 手动指定弹出的位置。
## en-US
You can manually specify the position of the popup via `placement`.
```jsx
import React, { useState } from 'react';
import { TreeSelect, Radio } from 'antd';
const { TreeNode } = TreeSelect;
const Demo = () => {
const [placement, SetPlacement] = useState('topLeft');
const placementChange = e => {
SetPlacement(e.target.value);
};
return (
<>
topLeft
topRight
bottomLeft
bottomRight
leaf3} />
>
);
};
export default Demo;
```