From 26d584d8b7ee27803cd9ca4f6b14b90c56435c2c Mon Sep 17 00:00:00 2001
From: cagataycivici
Date: Tue, 22 Oct 2019 10:55:37 +0300
Subject: [PATCH] Demo update
---
src/views/datatable/DataTableDoc.vue | 2 +-
src/views/datatable/DataTableStateDemo.vue | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/views/datatable/DataTableDoc.vue b/src/views/datatable/DataTableDoc.vue
index de7b05215..e82f9aec5 100644
--- a/src/views/datatable/DataTableDoc.vue
+++ b/src/views/datatable/DataTableDoc.vue
@@ -913,7 +913,7 @@ export default {
-<DataTable :value="cars" :paginator="true" :rows="10" :filters.sync="filters" :resizableColumns="true"
+<DataTable :value="cars" :paginator="true" :rows="10" :filters.sync="filters"
stateStorage="session" stateKey="dt-state-demo-session"
:selection.sync="selectedCar" selectionMode="single" dataKey="vin">
<template #header>
diff --git a/src/views/datatable/DataTableStateDemo.vue b/src/views/datatable/DataTableStateDemo.vue
index d27665c1b..c1259b543 100644
--- a/src/views/datatable/DataTableStateDemo.vue
+++ b/src/views/datatable/DataTableStateDemo.vue
@@ -11,7 +11,7 @@
Session Storage
-
@@ -53,7 +53,7 @@
Local Storage
-
@@ -101,7 +101,7 @@
<h3>Session Storage</h3>
-<DataTable :value="cars" :paginator="true" :rows="10" :filters.sync="filters" :resizableColumns="true"
+<DataTable :value="cars" :paginator="true" :rows="10" :filters.sync="filters"
:selection.sync="selectedCar1" selectionMode="single" dataKey="vin"
stateStorage="session" stateKey="dt-state-demo-session">
<template #header>
@@ -143,7 +143,7 @@
</DataTable>
<h3>Local Storage</h3>
-<DataTable :value="cars" :paginator="true" :rows="10" :filters.sync="filters" :resizableColumns="true"
+<DataTable :value="cars" :paginator="true" :rows="10" :filters.sync="filters"
:selection.sync="selectedCar2" selectionMode="single" dataKey="vin"
stateStorage="local" stateKey="dt-state-demo-local">
<template #header>