keanu-weblite/src/components/messages/export/MessageIncomingAudioExport.vue
N-Pex b1d47748c8 Use SASS module system
Get rid of all the SASS warnings/errors when building.
2025-05-19 10:25:46 +02:00

21 lines
525 B
Vue

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