-
Notifications
You must be signed in to change notification settings - Fork 416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working within a dialog #131
Comments
Me too. |
any update? |
<v-dialog v-model="myDialog">
<template v-slot:activator="{ on }">
<button
@click="openDialog()"
v-on="on"
>
Open
</button>
</template>
<infinite-scroll/>
</v-dialog>
<div
v-infinite-scroll="loadMoreItems"
:infinite-scroll-disabled="autoLoadDisabled"
:infinite-scroll-distance="10"
>
<div
v-for="(item, i) in items"
:key="i"
>
{{ item }}
</div>
</div> It's work for me !!! |
Thank you. I followed and the error was fixed |
很好用! |
Thank you dude, I've been trying to figure this out for weeks. |
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using Vuetify dialogs and within I have a big list of data I wish to load with infinite scroll.
The plugin is working fine outside a dialog but it doesn't fetch in a dialog...
The method
loadMoreItems
is not called once the dialog reach the very bottom.Moving the HTML outside the dialog it works as expected.
Is there a trick to let it work within the dialog?
The text was updated successfully, but these errors were encountered: