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.
41 lines
727 B
41 lines
727 B
<docs>
|
|
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 带有图标的
|
|
en-US: With an Icon
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
图标放在文字前面。
|
|
|
|
## en-US
|
|
|
|
The icon should be placed in front of the text.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-breadcrumb>
|
|
<a-breadcrumb-item href="">
|
|
<home-outlined />
|
|
</a-breadcrumb-item>
|
|
<a-breadcrumb-item href="">
|
|
<user-outlined />
|
|
<span>Application List</span>
|
|
</a-breadcrumb-item>
|
|
<a-breadcrumb-item>Application</a-breadcrumb-item>
|
|
</a-breadcrumb>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { HomeOutlined, UserOutlined } from '@ant-design/icons-vue';
|
|
export default defineComponent({
|
|
components: {
|
|
HomeOutlined,
|
|
UserOutlined,
|
|
},
|
|
});
|
|
</script>
|