ant-design-vue/components/typography/demo/ellipsis.vue

55 lines
2.1 KiB
Vue
Raw Normal View History

2021-09-01 07:04:46 +00:00
<docs>
---
order: 4
title:
zh-CN: 省略号
en-US: Ellipsis
---
## zh-CN
多行文本省略你可以通过 `tooltip` 属性配置省略展示内容大量文本时推荐优先使用 `expandable`
## en-US
Multiple line ellipsis support. You can use `tooltip` to config ellipsis tooltip. Recommend `expandable` when have lots of content.
</docs>
<template>
<a-switch v-model:checked="ellipsis" />
<a-typography-paragraph
:ellipsis="ellipsis"
content=" Ant Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team."
/>
<a-typography-paragraph
:ellipsis="ellipsis ? { rows: 2, expandable: true, symbol: 'more' } : false"
content="Ant Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team. Ant
Design, a design language for background applications, is refined by Ant UED Team."
/>
<a-typography-text
:style="ellipsis ? { width: '100px' } : {}"
:ellipsis="ellipsis ? { tooltip: 'I am ellipsis now!' } : false"
content="Ant Design, a design language for background applications, is refined by Ant UED Team."
/>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
return {
ellipsis: ref(true),
};
},
});
</script>