mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
31 lines
607 B
Markdown
31 lines
607 B
Markdown
|
# 单列
|
||
|
```html
|
||
|
<n-table single-column :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>
|
||
|
```
|