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

file_alert.vue « components « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a894596bf47651ca84edd7c0a2d9a8574496930 (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 { GlAlert } from '@gitlab/ui';
import { getAlert } from '../lib/alerts';

export default {
  components: {
    GlAlert,
  },
  props: {
    alertKey: {
      type: Symbol,
      required: true,
    },
  },
  computed: {
    alert() {
      return getAlert(this.alertKey);
    },
  },
};
</script>
<template>
  <gl-alert v-bind="alert.props" @dismiss="alert.dismiss($store)">
    <component :is="alert.message" />
  </gl-alert>
</template>