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

import_details_app.vue « components « details « import « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8682066302508aa265ca9ea4e7c9d12f4b821321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script>
import { s__ } from '~/locale';
import ImportDetailsTable from './import_details_table.vue';

export default {
  components: { ImportDetailsTable },
  props: {
    project: {
      type: Object,
      required: false,
      default: () => ({}),
    },
  },
  i18n: {
    pageTitle: s__('Import|GitHub import details'),
  },
};
</script>

<template>
  <div>
    <h1>{{ $options.i18n.pageTitle }}</h1>
    <import-details-table />
  </div>
</template>