[Vuejs]-How can I limit the width of the v-data-table column?

1👍

one solution you could use in css is

videoTitleStyle{
    maxWidth: 30%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

this is one way to hide the text that extends the maxWidht

👤BADRUM

Leave a comment