I'm using a Vuetify v-data-table and I want to customize the the data-table's scroll-bar, how can I do that? right now it is looking like this:
Vuetify
v-data-table
is there a way to style it to my liking?
If you need a styled scrollbar only for the table in the component, you can try this out.
<style scoped> ::v-deep .v-data-table .v-data-table__wrapper::-webkit-scrollbar { width:10px; } </style>