diff --git a/apps/showcase/components/landing/samples/CustomersApp.vue b/apps/showcase/components/landing/samples/CustomersApp.vue
index a33a6669e..f704cc66a 100644
--- a/apps/showcase/components/landing/samples/CustomersApp.vue
+++ b/apps/showcase/components/landing/samples/CustomersApp.vue
@@ -24,7 +24,6 @@
-
+
@@ -97,14 +96,14 @@
Inbox is empty.
-
+
-
+
@@ -120,7 +119,7 @@
-
+
{{ data.title }}
@@ -128,12 +127,12 @@
-
+
-
+
{{ data.time }}
@@ -149,6 +148,7 @@ export default {
redrawListener: null,
data() {
return {
+ checked: false,
search: '',
activeInboxNav: 'Inbox',
inboxNavs: [
@@ -351,7 +351,14 @@ export default {
selectedRows: []
};
},
- methods: {},
- components: {}
+ methods: {
+ onSelectionChange(checked) {
+ if (checked) {
+ this.selectedRows = this.tableData;
+ } else {
+ this.selectedRows = [];
+ }
+ }
+ }
};