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

17 lines
316 B
Markdown
Raw Normal View History

2019-12-02 03:16:35 +08:00
# Slots
2020-01-27 20:00:39 +08:00
Card has many slots to help you write less code.
2019-11-18 11:34:18 +08:00
```html
<n-card title="Card Slots Demo">
<template v-slot:header-extra>
v-slot:header-extra
</template>
2019-12-02 03:16:35 +08:00
Card Content
2019-11-18 11:34:18 +08:00
<template v-slot:footer>
v-slot:footer
</template>
<template v-slot:action>
v-slot:action
</template>
</n-card>
2019-12-02 03:16:35 +08:00
```