debian-mirror-gitlab/app/assets/javascripts/runner/runner_details/runner_details_app.vue
2021-04-29 21:17:54 +05:30

20 lines
320 B
Vue

<script>
import { I18N_TITLE } from './constants';
export default {
i18n: {
I18N_TITLE,
},
props: {
runnerId: {
type: String,
required: true,
},
},
};
</script>
<template>
<h2 class="page-title">
{{ sprintf($options.i18n.I18N_TITLE, { runner_id: runnerId }) }}
</h2>
</template>