1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-25 08:47:54 +00:00
bramw_baserow/web-frontend/modules/dashboard/components/application/ApplicationContext.vue
2024-10-07 07:06:57 +00:00

34 lines
708 B
Vue

<template>
<div style="position: absolute">
<ApplicationContext
ref="context"
:application="application"
:workspace="workspace"
>
<template #additional-context-items></template>
</ApplicationContext>
</div>
</template>
<script>
import ApplicationContext from '@baserow/modules/core/components/application/ApplicationContext.vue'
import applicationContext from '@baserow/modules/core/mixins/applicationContext'
export default {
components: {
ApplicationContext,
},
mixins: [applicationContext],
props: {
application: {
type: Object,
required: true,
},
workspace: {
type: Object,
required: true,
},
},
}
</script>