Example
| Props | Description | 
|---|---|
| strings | {string} 入力されたテキストが表示されます。 | 
| type-speed | {number} タイプ速度 ミリ秒単位。 | 
| loop | {boolean} ループ文字列 | 
| backDelay | {number} バックスペース前のバックディレイ時間ミリ秒単位 | 
| startDelay | {number} タイピング開始までの時間 ミリ秒単位 | 
| backSpeed | {number} バックスペースの速度 ミリ秒単位 | 
usebootstrap is
vue
<template>
 <p>
  usebootstrap is
  <Typed
   class="text-primary fw-semibold"
   :strings="['powerful.', 'extensible.', 'feature-packed.']"
   :type-speed="60"
   :loop="true"
   :back-speed="25"
   :back-delay="1500"
  />
 </p>
</template>