0๐
โ
My CSS class inside my filter component was
<style>
.column{
display: inline-block;
width: 50%;
box-sizing: border-box;
padding: 0 10px;
}
</style>
Which was affecting my V-data-table. I changed the class name from "column" to "header-list" and it got fixed
Source:stackexchange.com