Files
litlyx/dashboard/components/TypeWriter.vue
2024-06-01 15:27:40 +02:00

15 lines
193 B
Vue

<script lang="ts" setup>
const props = defineProps<{ text: string }>();
const currentText = ref<string>("");
onMounted(()=>{
});
</script>
<template>
<div>{{ text }}</div>
</template>