diff --git a/docs/components/table/README.md b/docs/components/table/README.md index 3ccf6dcc0dd..1fdfc464cd0 100755 --- a/docs/components/table/README.md +++ b/docs/components/table/README.md @@ -256,6 +256,7 @@ The following field properties are recognized: | `thClass` | String or Array | Class name (or array of class names) to add to header/footer `` cell | `thStyle` | Object | JavaScript object representing CSS styles you would like to apply to the table field `` | `variant` | String | Apply contextual class to the `` **and** `` in the column - `active`, `success`, `info`, `warning`, `danger` (these variants map to classes `thead-${variant}`, `table-${variant}`, or `bg-${variant}` accordingly) +| `tdAttr` | Object | JavaScript object representing additional attributes to apply to the `td` cell **Notes:** - _Field properties, if not present, default to `null` unless otherwise stated above._ diff --git a/lib/components/table.vue b/lib/components/table.vue index d20d56fb244..08416a19b51 100644 --- a/lib/components/table.vue +++ b/lib/components/table.vue @@ -73,7 +73,8 @@