vue-chatbot-test / src /components /TypingMessage.vue
ferrywuai's picture
Add loading and typing animation
ac8fc63
<script lang="ts" setup>
const props = defineProps<{
text: string
}>()
</script>
<template>
<span style="font-style: italic; color: #666">{{ props.text }}</span>
</template>