Skip to content

A Vue3 component for Typed.js with 🟦TypeScript support.

License

Notifications You must be signed in to change notification settings

Lu-Jiejie/vue3-typed-ts

 
 

Repository files navigation

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.

About

A Vue3 component for Typed.js with 🟦TypeScript support.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 72.9%
  • Vue 27.1%