mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
16 lines
271 B
Markdown
16 lines
271 B
Markdown
|
# 插槽
|
||
|
```html
|
||
|
<n-card title="卡片插槽示例">
|
||
|
<template v-slot:header-extra>
|
||
|
v-slot:header-extra
|
||
|
</template>
|
||
|
卡片内容
|
||
|
<template v-slot:footer>
|
||
|
v-slot:footer
|
||
|
</template>
|
||
|
<template v-slot:action>
|
||
|
v-slot:action
|
||
|
</template>
|
||
|
</n-card>
|
||
|
```
|