We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi.
Getting a Uncaught TypeError: Cannot set properties of undefined (setting 'innerHTML') when using either of the Text, Image or Video mode.
Uncaught TypeError: Cannot set properties of undefined (setting 'innerHTML')
I'm using it with Nuxt 3 and everything else seems to work fine.
This is how I'm setting it up.
CustomCursor.vue component:
<template> <div class="cursor mf-cursor -exclusion" ref="cursorRef"></div> </template> <script setup> import MouseFollower from "mouse-follower"; import gsap from 'gsap'; MouseFollower.registerGSAP(gsap); const cursorRef = ref() onMounted(() => { const cursor = new MouseFollower({ el: cursorRef.value, speed: 0.8, skewing: 3, }); }) </script>
Then the component above is loaded inside app.vue file. I know you can't see the SCSS import, but they are being loaded on an internal file.
The text was updated successfully, but these errors were encountered:
any news ? 😕
Sorry, something went wrong.
No branches or pull requests
Hi.
Getting a
Uncaught TypeError: Cannot set properties of undefined (setting 'innerHTML')
when using either of the Text, Image or Video mode.I'm using it with Nuxt 3 and everything else seems to work fine.
This is how I'm setting it up.
CustomCursor.vue component:
Then the component above is loaded inside app.vue file.
I know you can't see the SCSS import, but they are being loaded on an internal file.
The text was updated successfully, but these errors were encountered: