Skip to content
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

Getting currentPageIndex in svelte 4 #159

Open
karthikajjan opened this issue Feb 2, 2024 · 1 comment
Open

Getting currentPageIndex in svelte 4 #159

karthikajjan opened this issue Feb 2, 2024 · 1 comment

Comments

@karthikajjan
Copy link

Uncaught (in promise) ReferenceError: currentPageIndex is not defined

below is info in vs code
let:currentPageIndex declared on parent component cannot be used inside named slotsvelte(missing-declaration)

@h-sumiya
Copy link

use instead

<script>
    import Carousel from "svelte-carousel";
    let index = 0;
</script>

<Carousel
    on:pageChange={(e) => index = e.detail}
>
</Carousel>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants