I am working with a Vuetify v-autocomplete component and I need to implement a feature where I can detect when the user reaches the last item while scrolling, in order to load more items without the user having to manually type for search:
// component.vue
<template>
<v-autocomplete
ref="myAutocomplete"
v-model="selectedItem"
autocomplete="off"
:items="items"
no-filter
:label="$t('unit')"
rounded
outlined
item-text="name"
return-object
/>
</template>
I have searched through available props and events, but couldn't find anything that would assist me in achieving this functionality.