<script setup lang="ts">
// import { reactive } from 'vue';

const props = defineProps<{
  params: any;
}>();
</script>
<template>
  <div class="ag-grid-firt-col">{{ props.params.value }}</div>
</template>

<style lang="scss">
.ag-cell-value {
  height: 40px;
}
.ag-grid-firt-col {
  height: 100%;
  //   background-color: #f8f8f8;
  //   border-right: 1px solid;
  //   border-color: var(--ag-border-color);
  font-size: 13px;
  font-weight: 700;
  color: var(--ag-header-foreground-color);
}
</style>