Closed
Description
After upgrading to primevue 3.3.0-rc.1 got error in DataTable Column header slot
Uncaught (in promise) TypeError: can't access property "children", _ctx.col is undefined
<Column
field="deptCode"
style="width: 54px; text-align: center"
:sortable="false"
>
<template #header>
<span title="Department"> Dept. </span>
</template>
<template #body="slotProps">
<span :title="`${slotProps.data.deptName}`">{{
slotProps.data.deptCode
}}</span>
</template>
</Column>
This worked with previous versions.
Activity