1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-18 14:51:02 +00:00
bramw_baserow/web-frontend/modules/automation/components/AutomationHeader.vue
2025-03-27 16:07:22 +00:00

25 lines
520 B
Vue

<template>
<header class="layout__col-2-1 header header--space-between">
<AutomationHeaderMenuItems :automation="automation" />
<div>
<!-- Add new... button -->
</div>
</header>
</template>
<script>
import AutomationHeaderMenuItems from '@baserow/modules/automation/components/AutomationHeaderMenuItems'
export default {
name: 'AutomationHeader',
components: {
AutomationHeaderMenuItems,
},
props: {
automation: {
type: Object,
required: true,
},
},
}
</script>