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

this.split is not a function #30

Closed
merijnponzo opened this issue Feb 17, 2022 · 6 comments
Closed

this.split is not a function #30

merijnponzo opened this issue Feb 17, 2022 · 6 comments

Comments

@merijnponzo
Copy link

Hello, first of all great module!

I try to get the club feature SplitText working, but it's not

  1. i added a .npmrc within the root of my nuxt project
  2. i added npm:@gsap/shockingly to my package.json
  3. i added:
gsap: {
 clubPlugins: {
      splitText: true,
    }
}

to my nuxt.config.json and nuxt-gsap-module to my buildModules

When i use

 console.log(this.$SplitText);

i see
Screenshot 2022-02-17 at 14 20 09

but when i try to use it like:

const line = this.$SplitText(this.$refs.typewriter, {
      type: "lines,words,chars",
      linesClass: "split-line",
    });

i've got

TypeError: this.split is not a function
    SplitText SplitText.js:537
    created Faq.vue:40

Any help appreciated

@ivodolenc
Copy link
Member

Hi, thanks for your interest in this module.

Hmm, it's hard to say where the problem is without live repo, but at first I suggest you try this:

// add 'new' before 'this.$SplitText'
const line = new this.$SplitText( // ... )

More info

@merijnponzo
Copy link
Author

Hi,
results into

this.$SplitText is not constructor

Maybe you could have a look
https://github.com/merijnponzo/splittextbug

(you can add your token in .npmrc)

@ivodolenc
Copy link
Member

Try moving your code logic to the mounted() hook because all extra and club plugins are called only on the client side. If that doesnt work, then i believe there is some issue with the installation process (club plugins).

@ivodolenc
Copy link
Member

Closing this because of inactivity.

Another suggestion, try manually importing gsap and club plugins via nuxt plugin system. If it works that way, reopen the issue here.

Also, gsap has some issues with importing club plugins using yarn according to multiple user repors on the official forum.

Please note that this module was developed in accordance with the official guides and documents for importing the gsap core and all extra and club plugins from the public repo.

@merijnponzo
Copy link
Author

Hello,
it's mounted() indeed! thanks

@mrtsiradisi
Copy link

Hi, I will use the splittext module but I am getting an error. Can you help me?

My Code

const { $gsap } = useNuxtApp();

onMounted(() => {
var childSplit = new this.SplitText(".text-animation", {type: "lines"});
console.log(childSplit);
});

My Error :

index.vue:144 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'SplitText')

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

3 participants