feat: 添加打字机组件demo

This commit is contained in:
xiaoxian521
2022-10-19 18:54:26 +08:00
parent f9cf804627
commit 5dbba0f3ff
8 changed files with 87 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
<script setup lang="ts">
import TypeIt from "/@/components/ReTypeit";
defineOptions({
name: "Typeit"
});
</script>
<template>
<el-card>
<template #header>
<div class="card-header">
<span class="font-medium"> 打字机组件 </span>
</div>
</template>
<TypeIt :values="['test1', 'test2', 'test3']" />
</el-card>
</template>