summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/components/note_attachment.vue
blob: b6d8c831e2ef5607f795d6ff2f10cb4724a04208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script>
export default {
  name: 'NoteAttachment',
  props: {
    attachment: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <div class="note-attachment">
    <a v-if="attachment.image" :href="attachment.url" target="_blank" rel="noopener noreferrer">
      <img :src="attachment.url" class="note-image-attach" />
    </a>
    <div class="attachment">
      <a v-if="attachment.url" :href="attachment.url" target="_blank" rel="noopener noreferrer">
        <i class="fa fa-paperclip" aria-hidden="true"> </i> {{ attachment.filename }}
      </a>
    </div>
  </div>
</template>