mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-22 15:52:34 +00:00
22 lines
380 B
Vue
22 lines
380 B
Vue
<template>
|
|
<Context
|
|
class="variables-context"
|
|
overflow-scroll
|
|
max-height-if-outside-viewport
|
|
>
|
|
<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>
|