Orlandster / vue-typed-js

Typed.js integration for vue.js. Create a typing animation.
http://www.mattboldt.com/demos/typed-js/
MIT License
469 stars 37 forks source link

How do I place html content with class tags? #38

Closed dinogomez closed 3 years ago

dinogomez commented 3 years ago

<vue-typed-js :strings="['word1', '<span class='text-white'>/</span>', '<span class='text-darkgrey text-mono my-2'>word2</span>' ]" :loop="true" :contentType='html'> <span class="typing"></span> </vue-typed-js>

dinogomez commented 3 years ago

Solved it by removing the " ' " single quotes from the tag so <span class='text-white'>/</span> became <span class=text-white>/</span> and it worked.