naive-ui/demo/documentation/components/list/enUS/basic.md

27 lines
576 B
Markdown
Raw Normal View History

2019-11-12 15:04:42 +08:00
# Basic
```html
2019-11-22 16:54:32 +08:00
<n-list bordered>
2019-11-13 00:02:42 +08:00
<template v-slot:header>
hhh
</template>
<template v-slot:footer>
fff
</template>
2019-11-12 15:04:42 +08:00
<n-list-item>
2019-11-22 16:54:32 +08:00
<template v-slot:prefix>
<n-button>Prefix</n-button>
</template>
<template v-slot:suffix>
<n-button>Suffix</n-button>
</template>
<n-thing title="Thing" title-extra="extra" description="description">
Biu<br>
Biu<br>
Biu<br>
</n-thing>
2019-11-12 15:04:42 +08:00
</n-list-item>
<n-list-item>
2019-11-22 16:54:32 +08:00
<n-thing title="Thing" title-extra="extra" description="description" />
2019-11-12 15:04:42 +08:00
</n-list-item>
</n-list>
```