diff --git a/packages/docs/src/examples/v-data-table/prop-filterable.vue b/packages/docs/src/examples/v-data-table/prop-filter-keys.vue
similarity index 96%
rename from packages/docs/src/examples/v-data-table/prop-filterable.vue
rename to packages/docs/src/examples/v-data-table/prop-filter-keys.vue
index 8024b1182f2..de1454523fc 100644
--- a/packages/docs/src/examples/v-data-table/prop-filterable.vue
+++ b/packages/docs/src/examples/v-data-table/prop-filter-keys.vue
@@ -19,7 +19,11 @@
-
+
Stock
diff --git a/packages/docs/src/pages/en/components/data-tables/data-and-display.md b/packages/docs/src/pages/en/components/data-tables/data-and-display.md
index b0226fe94a4..968334fca1f 100644
--- a/packages/docs/src/pages/en/components/data-tables/data-and-display.md
+++ b/packages/docs/src/pages/en/components/data-tables/data-and-display.md
@@ -26,11 +26,11 @@ The data table exposes a **search** prop that allows you to filter your data.
-### Filterable
+### Filter Keys
-You can easily disable specific columns from being included when searching through table rows by setting the property **filterable** to false on the header item(s). In the example below the dessert name column is no longer searchable.
+You can easily select only the column you want to filter on by using the **filter-keys** prop. This prop accepts an array of keys from the table items that will be used for filtering. You may also choose to disable columns from filtering by setting the **filter** property to `false` on the header item(s). In the example below the we only filter on the `name` column.
-
+
### Custom filter
@@ -40,7 +40,7 @@ You can override the default filtering used with the **search** prop by supplyin
(value: string, query: string, item?: any) => boolean | number | [number, number] | [number, number][]
```
-In the example below, the custom filter will only match inputs that are in completely in upper case.
+Additionally, you may apply customize the filtering on a per column basis by setting custom function to the **filter** property on the header item(s). In the example below, the custom filter will only match inputs that are in completely in upper case.