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

runner_cloud_connection_form.vue « components « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c213607670e3b5b9beab40721a504a1f0bb47285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
import { s__ } from '~/locale';

export default {
  name: 'RunnerCloudForm',
  i18n: {
    title: s__('Runners|Google Cloud connection'),
  },
};
</script>
<template>
  <div>
    <h2 class="gl-font-size-h2">{{ $options.i18n.title }}</h2>
  </div>
</template>