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

blob_content_error.vue « components « blob « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f1af0a962d13ab5b36f309687e1b2127b0368e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
  props: {
    viewerError: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <div class="file-content code">
    <div class="text-center py-4" v-html="viewerError"></div>
  </div>
</template>