naive-ui/demo/documentation/components/card/zhCN/slots.md
2020-02-03 20:49:22 +08:00

329 B

插槽

卡片有很多插槽,希望能帮你少写点代码。

<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>