naive-ui/demo/documentation/components/card/zhCN/segment.md
2019-12-22 23:19:08 +08:00

441 B

分段

contentfooteraction 可以被 hardsoft 分段,分段分割线会在区域的上方出现。

<n-card title="卡片分段示例" :segmented="{
  content: 'hard',
  footer: 'soft'
}">
  <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>