mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
15 lines
193 B
Vue
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> |