1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-20 03:46:14 +00:00
bramw_baserow/web-frontend/modules/builder/components/page/header/VariablesContext.vue
2023-12-19 15:19:11 +00:00

21 lines
396 B
Vue

<template>
<Context
class="variables-context"
:overflow-scroll="true"
:max-height-if-outside-viewport="true"
>
<div style="padding: 5px">{{ $t('common.comingSoon') }}</div>
</Context>
</template>
<script>
import context from '@baserow/modules/core/mixins/context'
export default {
name: 'VariablesContext',
mixins: [context],
data() {
return {}
},
}
</script>