summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/pages/dashboard_page.vue
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>