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

conan.vue « metadata « details « components « package_registry « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10797d74acf4bc20747bb57a66edeb7bc80abdb9 (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
26
27
28
29
30
31
32
<script>
import { GlSprintf } from '@gitlab/ui';
import { s__ } from '~/locale';

import DetailsRow from '~/vue_shared/components/registry/details_row.vue';

export default {
  i18n: {
    recipeText: s__('PackageRegistry|Recipe: %{recipe}'),
  },
  components: {
    DetailsRow,
    GlSprintf,
  },
  props: {
    packageEntity: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <div>
    <details-row icon="information-o" padding="gl-p-4" data-testid="conan-recipe">
      <gl-sprintf :message="$options.i18n.recipeText">
        <template #recipe>{{ packageEntity.metadata.recipe }}</template>
      </gl-sprintf>
    </details-row>
  </div>
</template>