debian-mirror-gitlab/app/assets/javascripts/monitoring/pages/dashboard_page.vue

19 lines
286 B
Vue
Raw Normal View History

2020-06-23 00:09:42 +05:30
<script>
import Dashboard from '../components/dashboard.vue';
export default {
components: {
Dashboard,
},
props: {
dashboardProps: {
type: Object,
required: true,
},
},
};
</script>
<template>
<dashboard v-bind="{ ...dashboardProps }" />
</template>