debian-mirror-gitlab/app/assets/javascripts/notes/components/note_attachment.vue

37 lines
739 B
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
2018-05-09 12:01:36 +05:30
export default {
name: 'NoteAttachment',
props: {
attachment: {
type: Object,
required: true,
2018-03-17 18:26:18 +05:30
},
2018-05-09 12:01:36 +05:30
},
};
2018-03-17 18:26:18 +05:30
</script>
<template>
<div class="note-attachment">
2020-03-13 15:44:24 +05:30
<a
v-if="attachment.image"
ref="attachmentImage"
:href="attachment.url"
target="_blank"
rel="noopener noreferrer"
>
2019-02-15 15:39:39 +05:30
<img :src="attachment.url" class="note-image-attach" />
2018-03-17 18:26:18 +05:30
</a>
<div class="attachment">
2020-03-13 15:44:24 +05:30
<a
v-if="attachment.url"
ref="attachmentUrl"
:href="attachment.url"
target="_blank"
rel="noopener noreferrer"
>
2019-02-15 15:39:39 +05:30
<i class="fa fa-paperclip" aria-hidden="true"> </i> {{ attachment.filename }}
2018-03-17 18:26:18 +05:30
</a>
</div>
</div>
</template>