Skip to content

Commit

Permalink
fix(VDataTableColumn): columns are not keyboard-accessible fixes vuet…
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush.arora committed Jan 29, 2025
1 parent b12d8ec commit 929578e
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,11 @@ export const VDataTableColumn = defineFunctionalComponent({
width: [Number, String],
maxWidth: [Number, String],
nowrap: Boolean,
tabIndex: {
type: String,
default: '0',
},
}, (props, { slots }) => {
const Tag = props.tag ?? 'td'
return (
<Tag
tabindex={ props.tabIndex }
tabindex="0"
class={[
'v-data-table__td',
{
Expand Down

0 comments on commit 929578e

Please sign in to comment.