mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-01 21:03:46 +08:00
13 lines
282 B
Vue
13 lines
282 B
Vue
<script setup>
|
|
import BaseBubble from './Base.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<BaseBubble
|
|
class="px-[var(--bubble-padding-x)] py-[var(--bubble-padding-y)] text-sm"
|
|
data-bubble-name="unsupported"
|
|
>
|
|
{{ $t('CONVERSATION.UNSUPPORTED_MESSAGE') }}
|
|
</BaseBubble>
|
|
</template>
|