mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
16 lines
250 B
Vue
16 lines
250 B
Vue
<script setup>
|
|
defineProps({
|
|
message: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
</script>
|
|
<template>
|
|
<div
|
|
class="flex items-center justify-center h-10 text-sm text-slate-500 dark:text-slate-300"
|
|
>
|
|
{{ message }}
|
|
</div>
|
|
</template>
|