2022-05-23 15:19:55 +00:00
|
|
|
<template>
|
2025-05-06 12:13:03 +02:00
|
|
|
<message-outgoing v-bind="{ ...$props, ...$attrs }">
|
2023-12-04 11:29:23 +01:00
|
|
|
<audio controls>{{ $t("fallbacks.audio_file") }}</audio>
|
2022-05-23 15:19:55 +00:00
|
|
|
</message-outgoing>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2023-12-04 11:29:23 +01:00
|
|
|
import exportedAttachmentMixin from "./exportedAttachmentMixin";
|
2022-05-23 15:19:55 +00:00
|
|
|
import MessageOutgoing from "../MessageOutgoing.vue";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "MessageOutgoingAudioExport",
|
|
|
|
|
extends: MessageOutgoing,
|
|
|
|
|
components: { MessageOutgoing },
|
2023-12-04 11:29:23 +01:00
|
|
|
mixins: [exportedAttachmentMixin],
|
2022-05-23 15:19:55 +00:00
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
@import "@/assets/css/chat.scss";
|
|
|
|
|
</style>
|