diff --git a/README.md b/README.md
index 6b62bee2..f193f34e 100644
--- a/README.md
+++ b/README.md
@@ -116,12 +116,16 @@ This should result in the screenshot seen above
{{ props.row.name }}
{{ props.row.age }}
- {{ props.row.btn }}
+ {{ props.formattedRow.date }}
{{ props.index }}
```
-In addition to `prop.row` that contains the row object, `prop.index` contains the index for the table display row. And `prop.row.originalIndex` contains the original row index. You can access the original row object by using `row[prop.row.originalIndex]`.
+**Note:**
+* The original row object can be accessed via `prop.row`
+* The currently displayed table row index can be accessed via `prop.index` .
+* The original row index can be accessed via `prop.row.originalIndex`. You can access the original row object by using `row[prop.row.originalIndex]`.
+* You can access the formatted row data (for example - formatted date) via `prop.formattedRow`
### Component Options
diff --git a/src/components/Table.vue b/src/components/Table.vue
index ee2390bf..00acb931 100644
--- a/src/components/Table.vue
+++ b/src/components/Table.vue
@@ -52,7 +52,7 @@