diff --git a/src/views/datatable/DataTableDoc.vue b/src/views/datatable/DataTableDoc.vue index 4089fcbfe..69034770f 100644 --- a/src/views/datatable/DataTableDoc.vue +++ b/src/views/datatable/DataTableDoc.vue @@ -911,8 +911,8 @@ export default { Enabling state is easy as defining a unique stateKey, the storage to keep the state is defined with the stateStorage property that accepts session for sessionStorage and local for localStorage. Currently following features are supported by TableState; paging, sorting, filtering, column resizing, column reordering, row expansion, row group expansion and row selection.

-
-
+
+
+
 
 
 import CarService from '../../service/CarService';
@@ -1063,25 +1063,25 @@ export default {
     <Column field="vin" header="Vin">
         <template #body="slotProps">
             <span class="p-column-title">Vin</span>
-            {{slotProps.data.vin}}
+            {{slotProps.data.vin}}
         </template>
     </Column>
     <Column field="year" header="Year">
         <template #body="slotProps">
             <span class="p-column-title">Year</span>
-            {{slotProps.data.year}}
+            {{slotProps.data.year}}
         </template>
     </Column>
     <Column field="brand" header="Brand">
         <template #body="slotProps">
             <span class="p-column-title">Brand</span>
-            {{slotProps.data.brand}}
+            {{slotProps.data.brand}}
         </template>
     </Column>
     <Column field="color" header="Color">
         <template #body="slotProps">
             <span class="p-column-title">Color</span>
-            {{slotProps.data.color}}
+            {{slotProps.data.color}}
         </template>
     </Column>
 </DataTable>