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.
ant-design-vue/components/breadcrumb/demo/withIcon.md

27 lines
462 B

7 years ago
<cn>
#### 带有图标的
图标放在文字前面
</cn>
<us>
#### With an Icon
The icon should be placed in front of the text
</us>
```html
<template>
<a-breadcrumb>
<a-breadcrumb-item href="">
<a-icon type="home" />
</a-breadcrumb-item>
<a-breadcrumb-item href="">
<a-icon type="user" />
7 years ago
<span>Application List</span>
</a-breadcrumb-item>
<a-breadcrumb-item>
7 years ago
Application
</a-breadcrumb-item>
</a-breadcrumb>
7 years ago
</template>
```