mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-03-15 13:04:50 +00:00
15 lines
260 B
Vue
15 lines
260 B
Vue
<template>
|
|
<Context class="variables-context"> Variables </Context>
|
|
</template>
|
|
|
|
<script>
|
|
import context from '@baserow/modules/core/mixins/context'
|
|
|
|
export default {
|
|
name: 'VariablesContext',
|
|
mixins: [context],
|
|
data() {
|
|
return {}
|
|
},
|
|
}
|
|
</script>
|