92 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Vue
		
	
	
| <docs>
 | |
| ---
 | |
| order: 0
 | |
| title:
 | |
|   zh-CN: ๅบๆฌ็ปๆ
 | |
|   en-US: Basic Structure
 | |
| ---
 | |
| 
 | |
| ## zh-CN
 | |
| 
 | |
| ๅ
ธๅ็้กต้ขๅธๅฑใ
 | |
| 
 | |
| ## en-US
 | |
| 
 | |
| Classic page layouts.
 | |
| 
 | |
| </docs>
 | |
| <template>
 | |
|   <a-layout>
 | |
|     <a-layout-header>Header</a-layout-header>
 | |
|     <a-layout-content>Content</a-layout-content>
 | |
|     <a-layout-footer>Footer</a-layout-footer>
 | |
|   </a-layout>
 | |
| 
 | |
|   <a-layout>
 | |
|     <a-layout-header>Header</a-layout-header>
 | |
|     <a-layout>
 | |
|       <a-layout-sider>Sider</a-layout-sider>
 | |
|       <a-layout-content>Content</a-layout-content>
 | |
|     </a-layout>
 | |
|     <a-layout-footer>Footer</a-layout-footer>
 | |
|   </a-layout>
 | |
| 
 | |
|   <a-layout>
 | |
|     <a-layout-header>Header</a-layout-header>
 | |
|     <a-layout>
 | |
|       <a-layout-content>Content</a-layout-content>
 | |
|       <a-layout-sider>Sider</a-layout-sider>
 | |
|     </a-layout>
 | |
|     <a-layout-footer>Footer</a-layout-footer>
 | |
|   </a-layout>
 | |
| 
 | |
|   <a-layout>
 | |
|     <a-layout-sider>Sider</a-layout-sider>
 | |
|     <a-layout>
 | |
|       <a-layout-header>Header</a-layout-header>
 | |
|       <a-layout-content>Content</a-layout-content>
 | |
|       <a-layout-footer>Footer</a-layout-footer>
 | |
|     </a-layout>
 | |
|   </a-layout>
 | |
| </template>
 | |
| 
 | |
| <style>
 | |
| #components-layout-demo-basic .code-box-demo {
 | |
|   text-align: center;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-header,
 | |
| #components-layout-demo-basic .ant-layout-footer {
 | |
|   color: #fff;
 | |
|   background: #7dbcea;
 | |
| }
 | |
| [data-theme='dark'] #components-layout-demo-basic .ant-layout-header {
 | |
|   background: #6aa0c7;
 | |
| }
 | |
| [data-theme='dark'] #components-layout-demo-basic .ant-layout-footer {
 | |
|   background: #6aa0c7;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-footer {
 | |
|   line-height: 1.5;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-sider {
 | |
|   color: #fff;
 | |
|   line-height: 120px;
 | |
|   background: #3ba0e9;
 | |
| }
 | |
| [data-theme='dark'] #components-layout-demo-basic .ant-layout-sider {
 | |
|   background: #3499ec;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-content {
 | |
|   min-height: 120px;
 | |
|   color: #fff;
 | |
|   line-height: 120px;
 | |
|   background: rgba(16, 142, 233, 1);
 | |
| }
 | |
| [data-theme='dark'] #components-layout-demo-basic .ant-layout-content {
 | |
|   background: #107bcb;
 | |
| }
 | |
| #components-layout-demo-basic > .code-box-demo > .ant-layout + .ant-layout {
 | |
|   margin-top: 48px;
 | |
| }
 | |
| </style>
 |