mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-23 04:40:15 +00:00
15 lines
264 B
Vue
15 lines
264 B
Vue
<template>
|
|
<Context class="data-source-context"> DataSource </Context>
|
|
</template>
|
|
|
|
<script>
|
|
import context from '@baserow/modules/core/mixins/context'
|
|
|
|
export default {
|
|
name: 'DataSourceContext',
|
|
mixins: [context],
|
|
data() {
|
|
return {}
|
|
},
|
|
}
|
|
</script>
|