mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-15 21:18:41 +00:00
27 lines
667 B
Vue
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>
|