1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-15 21:18:41 +00:00
bramw_baserow/web-frontend/modules/dashboard/components/Dashboard.vue
2025-01-07 17:32:50 +00:00

27 lines
667 B
Vue

<template>
<div class="dashboard-app">
<DashboardHeader :dashboard="dashboard" :store-prefix="storePrefix" />
<DashboardContent :dashboard="dashboard" :store-prefix="storePrefix" />
</div>
</template>
<script>
import DashboardHeader from '@baserow/modules/dashboard/components/DashboardHeader'
import DashboardContent from '@baserow/modules/dashboard/components/DashboardContent'
export default {
name: 'Dashboard',
components: { DashboardHeader, DashboardContent },
props: {
dashboard: {
type: Object,
required: true,
},
storePrefix: {
type: String,
required: false,
default: '',
},
},
}
</script>