1.0.3 • Published 3 months ago

vue3-typed-ts v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

Vue3 Typed.js

A Vue3 component for Typed.js with TypeScript support. You can use it in Vue3 + TypeScript projects.

Usage

Install

npm install vue3-typed-ts

Example

<script setup lang="ts">
  import {VueTypedJs} from "vue3-typed-ts";
</script>

<template>
  <VueTypedJs
    :strings="['Hello World', 'Hello Vue3']"
    :typeSpeed="100"
    :backSpeed="100"
    :loop="true"
  >
    <span class="typing"></span>
  </VueTypedJs>
</template>

You can see Properties and Events at vue-typed-js repo.