naive-ui/demo/documentation/components/card/enUS/cover.demo.md

19 lines
258 B
Markdown
Raw Normal View History

2019-11-18 11:34:18 +08:00
# Cover
2020-12-12 14:44:44 +08:00
2019-11-18 11:34:18 +08:00
Card can have a cover.
2020-12-12 14:44:44 +08:00
2019-11-18 11:34:18 +08:00
```html
<n-card title="Card with Cover">
2020-12-16 02:24:35 +08:00
<template #cover>
2020-12-12 14:44:44 +08:00
<img src="https://07akioni.oss-cn-beijing.aliyuncs.com/07akioni.jpeg" />
2019-11-18 11:34:18 +08:00
</template>
Card Content
</n-card>
```
2020-12-12 14:44:44 +08:00
2019-11-18 11:34:18 +08:00
```css
.n-card {
max-width: 300px;
}
2020-12-12 14:44:44 +08:00
```