naive-ui/demo/documentation/components/table/zhCN/basic.demo.md
07akioni 487001d697 build: add changelog to site, refactor loader based on suffix
.demo.md for component demo
.demo-entry.md for demo entry
.md for common docs
2020-08-19 23:30:04 +08:00

617 B

基础用法

<n-table :bordered="false" :single-line="false">
  <n-thead>
    <n-tr>
      <n-th>Abandon</n-th>
      <n-th>Abormal</n-th>
      <n-th>Abolish</n-th>
      <n-th>...</n-th>
      <n-th>万事开头难</n-th>
    </n-tr>
  </n-thead>
  <n-tbody>
    <n-tr>
      <n-td>放弃</n-td>
      <n-td>反常的</n-td>
      <n-td>彻底废除</n-td>
      <n-td>...</n-td>
      <n-td>干!我刚才背的是啥</n-td>
    </n-tr>
    <n-tr>
      <n-td>...</n-td>
      <n-td>...</n-td>
      <n-td>...</n-td>
      <n-td>...</n-td>
      <n-td>...</n-td>
    </n-tr>
  </n-tbody>
</n-table>