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

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

<template>
  <div data-testid="issue-title">
    <p class="gl-font-weight-bold">{{ title }}</p>
    <p class="gl-mb-0">{{ refPath }}</p>
  </div>
</template>