I am facing an issue with my code while using Quasar (Vue 3.0). The code snippet in question is:
<q-select filled v-model="model" :options="options" label="Filled" />
When the drop-down menu is open and I scroll the page, the list within the dropdown also scrolls along with the page. Is there a way to prevent the popup list from scrolling with the page? I want the list to stay bound to the dropdown and not scroll along with the form.
In the image above, you can see that when we scroll the form, the dropdown items move along with the page!