18 lines
346 B
Vue
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>
|