mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-18 14:51:02 +00:00
25 lines
520 B
Vue
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>
|