Files
chad/client/app/components/chat/ChatMessage.vue
Ivan Grachyov ca773a56c6 chat WIP
2025-12-26 23:36:21 +03:00

28 lines
442 B
Vue

<template>
<PrimeCard>
<template #header>
<span class="font-bold">
{{ username }}
</span>
</template>
<template #content>
{{ message }}
</template>
<template #footer>
{{ createdAt }}
</template>
</PrimeCard>
</template>
<script lang="ts" setup>
interface Props {
username: string
message: string
createdAt: Date
}
defineProps<Props>()
</script>
<style lang="scss"></style>