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

dashboard_page.vue « pages « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 519a20d7be371e5d7524f40975b2670cf8f4f144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
import Dashboard from '../components/dashboard.vue';

export default {
  components: {
    Dashboard,
  },
  props: {
    dashboardProps: {
      type: Object,
      required: true,
    },
  },
};
</script>
<template>
  <dashboard v-bind="{ ...dashboardProps }" />
</template>