Newer
Older
<!--
- the headerTooltip field must be defined together with tooltipComponent
- only check if is header if tooltip applied everywhere
- tooltipShowDelay defines the time to wait for tooltips
-->
<script setup lang="ts">
import { ref } from "vue";
const params: any = props.params;
const isHeader = params.rowIndex === undefined;
</script>
<template>
<div class="bg-red-500" red="banans" v-if="isHeader">hello!</div>