74 lines
1.9 KiB
Markdown
74 lines
1.9 KiB
Markdown
|
<cn>
|
||
|
#### 竖排列表样式
|
||
|
通过设置 `itemLayout` 属性为 `vertical` 可实现竖排列表样式。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Vertical
|
||
|
Setting `itemLayout` property with `vertical` to create a vertical list.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<a-list
|
||
|
itemLayout="vertical"
|
||
|
size="large"
|
||
|
:pagination="pagination"
|
||
|
:dataSource="listData"
|
||
|
>
|
||
|
<a-list-item slot="renderItem" slot-scope="item, index" key="item.title">
|
||
|
<template slot="actions" v-for="{type, text} in actions">
|
||
|
<span :key="type">
|
||
|
<a-icon :type="type" style="margin-right: 8px" />
|
||
|
{{text}}
|
||
|
</span>
|
||
|
</template>
|
||
|
<img slot="extra" width="272" alt="logo" src="https://gw.alipayobjects.com/zos/rmsportal/mqaQswcyDLcXyDKnZfES.png" />
|
||
|
<a-list-item-meta
|
||
|
:description="item.description"
|
||
|
>
|
||
|
<a slot="title" :href="item.href">{{item.title}}</a>
|
||
|
<a-avatar slot="avatar" :src="item.avatar" />
|
||
|
</a-list-item-meta>
|
||
|
{{item.content}}
|
||
|
</a-list-item>
|
||
|
</a-list>
|
||
|
</template>
|
||
|
<script>
|
||
|
const listData = []
|
||
|
for (let i = 0; i < 23; i++) {
|
||
|
listData.push({
|
||
|
href: 'https://vuecomponent.github.io/ant-design/',
|
||
|
title: `ant design part ${i}`,
|
||
|
avatar: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png',
|
||
|
description: 'Ant Design, a design language for background applications, is refined by Ant UED Team.',
|
||
|
content: 'We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure), to help people create their product prototypes beautifully and efficiently.',
|
||
|
})
|
||
|
}
|
||
|
|
||
|
const pagination = {
|
||
|
onChange: (page) => {
|
||
|
console.log(page)
|
||
|
},
|
||
|
pageSize: 3,
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
listData,
|
||
|
pagination,
|
||
|
actions: [
|
||
|
{ type: 'star-o', text: '156' },
|
||
|
{ type: 'like-o', text: '156' },
|
||
|
{ type: 'message-o', text: '2' },
|
||
|
],
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
|
||
|
</style>
|
||
|
```
|