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

28 lines
718 B
Vue
Raw Normal View History

2022-05-23 15:19:55 +00:00
<template>
<message-outgoing v-bind="{ ...$props, ...$attrs }" v-on="$listeners">
<div class="bubble image-bubble">
<v-responsive :aspect-ratio="16 / 9" class="ma-0 pa-0">
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-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: "MessageOutgoingVideoExport",
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>