ant-design-vue/components/space/demo/split.vue

34 lines
519 B
Vue
Raw Normal View History

<docs>
---
order: 0
title:
zh-CN: 分隔符
en-US: Split
---
## zh-CN
相邻组件分隔符
## en-US
Crowded components split.
</docs>
<template>
<a-space>
<template #split>
<a-divider type="vertical" />
</template>
<a-typography-link>Link</a-typography-link>
<a-typography-link>Link</a-typography-link>
<a-typography-link>Link</a-typography-link>
</a-space>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({});
</script>