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
I'm trying to use vue-typed-js but I get the following error: "Unknown custom element: ".
I've installed it via npm install --save vue-typed-js.
Inside the component in which I want to use Typed-js I've put
import Vue from 'vue'; import { VueTypedJs } from 'vue-typed-js'; Vue.use(VueTypedJs);
inside the script tag and:
<vue-typed-js :strings="['First text', 'Second Text']"> <h1 class="typing"></h1> </vue-typed-js>
inside the template tag.
But it doesn't work.
Thank you.
The text was updated successfully, but these errors were encountered:
@GeorgeFlorian
Use import VueTypedJs from 'vue-typed-js' instead of import { VueTypedJs } from 'vue-typed-js' in your main js file.
import VueTypedJs from 'vue-typed-js'
import { VueTypedJs } from 'vue-typed-js'
Sorry, something went wrong.
Works for me with nuxt!
No branches or pull requests
I'm trying to use vue-typed-js but I get the following error: "Unknown custom element: ".
I've installed it via npm install --save vue-typed-js.
Inside the component in which I want to use Typed-js I've put
inside the script tag and:
inside the template tag.
But it doesn't work.
Thank you.
The text was updated successfully, but these errors were encountered: