ant-design-vue/components/breadcrumb/demo/withIcon.md

27 lines
462 B
Markdown
Raw Normal View History

2018-03-09 05:26:34 +00:00
<cn>
#### 带有图标的
图标放在文字前面
</cn>
<us>
#### With an Icon
The icon should be placed in front of the text
</us>
```html
<template>
2018-03-10 05:34:26 +00:00
<a-breadcrumb>
<a-breadcrumb-item href="">
<a-icon type="home" />
</a-breadcrumb-item>
<a-breadcrumb-item href="">
<a-icon type="user" />
2018-03-09 05:26:34 +00:00
<span>Application List</span>
2018-03-10 05:34:26 +00:00
</a-breadcrumb-item>
<a-breadcrumb-item>
2018-03-09 05:26:34 +00:00
Application
2018-03-10 05:34:26 +00:00
</a-breadcrumb-item>
</a-breadcrumb>
2018-03-09 05:26:34 +00:00
</template>
```