164 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			164 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Markdown
		
	
	
| <cn>
 | |
| #### 位置
 | |
| 位置有十二个方向。
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### Placement
 | |
| There are 12 `placement` options available.
 | |
| </us>
 | |
| 
 | |
| ```html
 | |
| <template>
 | |
| <div id="components-popover-demo-placement">
 | |
|   <div :style="{ marginLeft: `${buttonWidth}px`, whiteSpace: 'nowrap' }">
 | |
|     <a-popover placement="topLeft">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>TL</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="top">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>Top</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="topRight">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>TR</a-button>
 | |
|     </a-popover>
 | |
|   </div>
 | |
|   <div :style="{ width: `${buttonWidth}px`, float: 'left' }">
 | |
|     <a-popover placement="leftTop">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>LT</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="left">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>Left</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="leftBottom">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>LB</a-button>
 | |
|     </a-popover>
 | |
|   </div>
 | |
|   <div :style="{ width: `${buttonWidth}px`, marginLeft: `${buttonWidth * 4 + 24 }px`}">
 | |
|     <a-popover placement="rightTop">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>RT</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="right">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>Right</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="rightBottom">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>RB</a-button>
 | |
|     </a-popover>
 | |
|   </div>
 | |
|   <div :style="{ marginLeft: `${buttonWidth}px`, clear: 'both', whiteSpace: 'nowrap' }">
 | |
|     <a-popover placement="bottomLeft">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>BL</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="bottom">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>Bottom</a-button>
 | |
|     </a-popover>
 | |
|     <a-popover placement="bottomRight">
 | |
|       <template slot="content">
 | |
|         <p>Content</p>
 | |
|         <p>Content</p>
 | |
|       </template>
 | |
|       <template slot="title">
 | |
|         <span>Title</span>
 | |
|       </template>
 | |
|       <a-button>BR</a-button>
 | |
|     </a-popover>
 | |
|   </div>
 | |
| </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   data () {
 | |
|     return {
 | |
|       buttonWidth: 70,
 | |
|     }
 | |
|   },
 | |
| }
 | |
| </script>
 | |
| <style>
 | |
| #components-popover-demo-placement .ant-btn {
 | |
|   width: 70px;
 | |
|   text-align: center;
 | |
|   padding: 0;
 | |
|   margin-right: 8px;
 | |
|   margin-bottom: 8px;
 | |
| }
 | |
| </style>
 | |
| ```
 |