Check out my Vuetify code snippet that utilizes a list:
<v-list>
<v-list-tile
v-for="user in users"
:key="user.id"
avatar
@click=""
>
<v-list-tile-content>
<v-list-tile-title v-text="user.name"></v-list-tile-title>
</v-list-tile-content>
<v-btn icon>
<v-icon>edit</v-icon>
</v-btn>
</v-list-tile>
</v-list>
The issue I'm facing is that my list isn't scrollable by default, and since I have a large number of users (over 100), it's causing problems. Are there any features or attributes available to help with making the list scrollable?