我在项目中使用Vue-typer
。我可以在DOM中看到它,但是它没有出现在实际屏幕上。
我的插件文件夹下有vueTyper.js
,在我的nuxt.config.js
中,我有插件
在我的index.vue
中,我已经将vueTyper
添加到了插件中。
<template>
<section class="container">
<div>
<div class="title">My Title</div>
<no-ssr placeholder="loading...">
<vue-typer class="title" caret-animation="smooth" text='This is a very long test to see if this will work!' type-delay='100'></vue-typer>
</no-ssr>
</div>
</section>
</template>
我看不到文本“这是一个很长的测试时间,才能看到...”
我尝试过更改CSS,以查看文本是否不可见,还有其他建议吗?任何帮助表示赞赏!