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

17 lines
329 B
Markdown
Raw Normal View History

2019-12-02 03:16:35 +08:00
# 插槽
2020-02-03 20:49:22 +08:00
卡片有很多插槽,希望能帮你少写点代码。
2019-12-02 03:16:35 +08:00
```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>
```