mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
10 lines
223 B
Vue
10 lines
223 B
Vue
<script setup>
|
|
import BaseBubble from './Base.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<BaseBubble class="px-4 py-3 text-sm" data-bubble-name="unsupported">
|
|
{{ $t('CONVERSATION.UNSUPPORTED_MESSAGE') }}
|
|
</BaseBubble>
|
|
</template>
|