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

discussion_reply_placeholder.vue « components « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0204169214b25cd95065d69e1d7901fcc0782f53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
export default {
  name: 'ReplyPlaceholder',
  props: {
    buttonText: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <button
    ref="button"
    type="button"
    class="js-vue-discussion-reply btn btn-text-field"
    :title="s__('MergeRequests|Add a reply')"
    @click="$emit('onClick')"
  >
    {{ buttonText }}
  </button>
</template>