keanu-weblite/src/components/messages/export/MessageOutgoingAudioExport.vue
2025-05-19 10:23:51 +02:00

21 lines
523 B
Vue

<template>
<message-outgoing v-bind="{ ...$props, ...$attrs }">
<audio controls>{{ $t("fallbacks.audio_file") }}</audio>
</message-outgoing>
</template>
<script>
import exportedAttachmentMixin from "./exportedAttachmentMixin";
import MessageOutgoing from "../MessageOutgoing.vue";
export default {
name: "MessageOutgoingAudioExport",
extends: MessageOutgoing,
components: { MessageOutgoing },
mixins: [exportedAttachmentMixin],
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>