mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #5243 - Table: Computed property "bodyStyle" is already defined in Props.
This commit is contained in:
parent
0e4aba78b7
commit
1f2e035640
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<tbody :ref="bodyRef" :class="cx('tbody')" role="rowgroup" :style="bodyStyle" v-bind="ptm('tbody', ptmTBodyOptions)">
|
||||
<tbody :ref="bodyRef" :class="cx('tbody')" role="rowgroup" :style="bodyContentStyle" v-bind="ptm('tbody', ptmTBodyOptions)">
|
||||
<template v-if="!empty">
|
||||
<template v-for="(rowData, rowIndex) of value" :key="getRowKey(rowData, rowIndex)">
|
||||
<DTBodyRow
|
||||
|
@ -279,7 +279,7 @@ export default {
|
|||
|
||||
return null;
|
||||
},
|
||||
bodyStyle() {
|
||||
bodyContentStyle() {
|
||||
return this.getVirtualScrollerProp('contentStyle');
|
||||
},
|
||||
ptmTBodyOptions() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue