1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-17 22:32:02 +00:00
bramw_baserow/web-frontend/modules/dashboard/components/Dashboard.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
667 B
Vue
Raw Permalink Normal View History

<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>