mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-22 15:52:34 +00:00
21 lines
491 B
Vue
21 lines
491 B
Vue
<template>
|
|
<VisibilityForm
|
|
ref="panelForm"
|
|
:default-values="defaultValues"
|
|
@values-changed="onChange($event)"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import elementSidePanel from '@baserow/modules/builder/mixins/elementSidePanel'
|
|
import VisibilityForm from '@baserow/modules/builder/components/elements/components/forms/VisibilityForm'
|
|
export default {
|
|
name: 'VisibilitySidePanel',
|
|
components: { VisibilityForm },
|
|
mixins: [elementSidePanel],
|
|
data() {
|
|
return {}
|
|
},
|
|
}
|
|
</script>
|