naive-ui/demo/documentation/components/card/enUS/slots.md
2020-01-27 20:00:39 +08:00

316 B

Slots

Card has many slots to help you write less code.

<n-card title="Card Slots Demo">
  <template v-slot:header-extra>
    v-slot:header-extra
  </template>
  Card Content
  <template v-slot:footer>
    v-slot:footer
  </template>
  <template v-slot:action>
    v-slot:action
  </template>
</n-card>