mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
add dashboard
This commit is contained in:
15
dashboard/components/TypeWriter.vue
Normal file
15
dashboard/components/TypeWriter.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script lang="ts" setup>
|
||||
|
||||
const props = defineProps<{ text: string }>();
|
||||
const currentText = ref<string>("");
|
||||
|
||||
onMounted(()=>{
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<template>
|
||||
<div>{{ text }}</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user