You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
420 B

# 带有图标的
- order: 1
图标放在文字前面。
---
````jsx
import { Breadcrumb, Icon } from 'antd';
9 years ago
ReactDOM.render(
<Breadcrumb>
<Breadcrumb.Item href="">
<Icon type="home" />
</Breadcrumb.Item>
<Breadcrumb.Item href="">
<Icon type="user" />
应用列表
</Breadcrumb.Item>
<Breadcrumb.Item>
应用
</Breadcrumb.Item>
</Breadcrumb>
, mountNode);
````