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

27 lines
485 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>
2019-10-09 10:32:23 +00:00
```tpl
2018-03-09 05:26:34 +00:00
<template>
2019-09-28 12:45:07 +00:00
<a-breadcrumb>
<a-breadcrumb-item href="">
<a-icon type="home" />
</a-breadcrumb-item>
<a-breadcrumb-item href="">
<a-icon type="user" />
<span>Application List</span>
</a-breadcrumb-item>
<a-breadcrumb-item>
Application
</a-breadcrumb-item>
</a-breadcrumb>
2018-03-09 05:26:34 +00:00
</template>
```