summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/components/discussion_reply_placeholder.vue
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>