
* feat: ellipsis text automatically displays tooltip based on ellipsis * feat: ellipsis text automatically displays tooltip based on ellipsis --------- Co-authored-by: sqchen <9110848@qq.com> Co-authored-by: sqchen <chenshiqi@sshlx.com>
17 lines
455 B
Vue
17 lines
455 B
Vue
<script lang="ts" setup>
|
|
import { EllipsisText } from '@vben/common-ui';
|
|
|
|
const text = `
|
|
Vben Admin 是一个基于 Vue3.0、Vite、 TypeScript 的后台解决方案,目标是为开发中大型项目提供开箱即用的解决方案。
|
|
`;
|
|
</script>
|
|
<template>
|
|
<EllipsisText :line="2" :tooltip-when-ellipsis="true">
|
|
{{ text }}
|
|
</EllipsisText>
|
|
|
|
<EllipsisText :line="3" :tooltip-when-ellipsis="true">
|
|
{{ text }}
|
|
</EllipsisText>
|
|
</template>
|