keanu-weblite/src/components/messages/export/MessageIncomingVideoExport.vue

28 lines
711 B
Vue
Raw Normal View History

2022-05-23 15:19:55 +00:00
<template>
<message-incoming v-bind="{ ...$props, ...$attrs }" v-on="$listeners">
<div class="bubble image-bubble">
<v-responsive :aspect-ratio="16 / 9" :src="src">
2023-12-04 11:29:23 +01:00
<video controls class="w-100 h-100">
2022-05-23 15:19:55 +00:00
{{ $t("fallbacks.video_file") }}
</video>
</v-responsive>
</div>
</message-incoming>
</template>
<script>
2023-12-04 11:29:23 +01:00
import exportedAttachmentMixin from "./exportedAttachmentMixin";
2022-05-23 15:19:55 +00:00
import MessageIncoming from "../MessageIncoming.vue";
export default {
name: "MessageIncomingVideoExport",
extends: MessageIncoming,
components: { MessageIncoming },
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>