52 lines
		
	
	
		
			971 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			971 B
		
	
	
	
		
			Markdown
		
	
	
| <cn>
 | |
| #### ๅบ็กๅ่กจ
 | |
| ๅบ็กๅ่กจใ
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### Basic list
 | |
| Basic list.
 | |
| </us>
 | |
| 
 | |
| ```tpl
 | |
| <template>
 | |
|   <a-list itemLayout="horizontal" :dataSource="data">
 | |
|     <a-list-item slot="renderItem" slot-scope="item, index">
 | |
|       <a-list-item-meta
 | |
|         description="Ant Design, a design language for background applications, is refined by Ant UED Team"
 | |
|       >
 | |
|         <a slot="title" href="https://vue.ant.design/">{{item.title}}</a>
 | |
|         <a-avatar
 | |
|           slot="avatar"
 | |
|           src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png"
 | |
|         />
 | |
|       </a-list-item-meta>
 | |
|     </a-list-item>
 | |
|   </a-list>
 | |
| </template>
 | |
| <script>
 | |
|   const data = [
 | |
|     {
 | |
|       title: 'Ant Design Title 1',
 | |
|     },
 | |
|     {
 | |
|       title: 'Ant Design Title 2',
 | |
|     },
 | |
|     {
 | |
|       title: 'Ant Design Title 3',
 | |
|     },
 | |
|     {
 | |
|       title: 'Ant Design Title 4',
 | |
|     },
 | |
|   ];
 | |
|   export default {
 | |
|     data() {
 | |
|       return {
 | |
|         data,
 | |
|       };
 | |
|     },
 | |
|   };
 | |
| </script>
 | |
| <style></style>
 | |
| ```
 |