summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/security_configuration/components/upgrade.vue
blob: 166ee4ff194b06914f81d04d7b2d18806ab2735e (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
<script>
import { GlLink, GlSprintf } from '@gitlab/ui';
import { UPGRADE_CTA } from './features_constants';

export default {
  components: {
    GlLink,
    GlSprintf,
  },
  i18n: {
    UPGRADE_CTA,
  },
};
</script>

<template>
  <span>
    <gl-sprintf :message="$options.i18n.UPGRADE_CTA">
      <template #link="{ content }">
        <gl-link target="_blank" href="https://about.gitlab.com/pricing/">
          {{ content }}
        </gl-link>
      </template>
    </gl-sprintf>
  </span>
</template>