Files
ylst-h5/src/components/YlTable/components/Tootips/Index.vue
陈昱达 91d1cbc21b refactor(components): 优化多个组件的样式和逻辑
-调整 tooltip 内容显示逻辑,优化样式
- 修复饼图数据为空时的显示问题- 优化表格宽度计算逻辑- 修复饼图初始化问题- 优化问卷分析页面样式
2025-05-27 14:12:56 +08:00

18 lines
346 B
Vue

<script setup lang="ts">
const content = defineModel<{ row: any; column: any; cellValue: any }>('content');
</script>
<template>
<div class="tooltip-content">
<span v-html="content?.cellValue"></span>
</div>
</template>
<style lang="scss" scoped>
.tooltip-content {
max-width: 80vw;
max-height: 45vh;
overflow: scroll;
}
</style>