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

31 lines
630 B
Markdown
Raw Normal View History

2020-02-20 16:26:34 +08:00
# Basic
```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>It's hard to learn words</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>Damn it! I can't remember those words.</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>
```