Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list_item.vue « components « saved_replies « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfa9a405dee310805086696da1ad009ec80cff07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
export default {
  props: {
    reply: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <li class="gl-mb-5">
    <div class="gl-display-flex gl-align-items-center">
      <strong>{{ reply.name }}</strong>
    </div>
    <div class="gl-mt-3 gl-font-monospace">{{ reply.content }}</div>
  </li>
</template>