debian-mirror-gitlab/app/assets/javascripts/boards/components/issuable_title.vue

22 lines
340 B
Vue
Raw Normal View History

2020-11-24 15:15:51 +05:30
<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>