JSFiddle - React, Tailwind, and code Playground
by kordarei
HTML
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="app">
<div class="element"></div>
</div>
</body>
</html>
Vue
Vue.use(VueTypedJs)
new Vue({
el: "#app",
data() {
return {
typed: new Typed(".element", {
strings: ["<i>First</i> sentence.", "& a second sentence."],
typeSpeed: 40
}),
}
}
})