naive-ui/demo/documentation/components/table/zhCN/basic.demo.md

32 lines
618 B
Markdown
Raw Normal View History

2020-02-20 16:26:34 +08:00
# 基础用法
2020-12-12 14:44:44 +08:00
2020-02-20 16:26:34 +08:00
```html
2020-02-23 12:08:48 +08:00
<n-table :bordered="false" :single-line="false">
2020-02-20 16:26:34 +08:00
<n-thead>
2020-02-23 11:28:20 +08:00
<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>
2020-02-20 16:26:34 +08:00
</n-thead>
<n-tbody>
2020-02-23 11:28:20 +08:00
<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>
2020-02-20 16:26:34 +08:00
</n-tbody>
</n-table>
```