1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-22 12:38:35 +00:00
bramw_baserow/web-frontend/modules/builder/components/form/BuilderForm.vue
2024-10-22 14:34:13 +04:00

31 lines
600 B
Vue

<template>
<ApplicationForm
ref="applicationForm"
:default-values="{ name: defaultName }"
@submitted="$emit('submitted', $event)"
>
</ApplicationForm>
</template>
<script>
import ApplicationForm from '@baserow/modules/core/components/application/ApplicationForm'
export default {
name: 'BuilderForm',
components: { ApplicationForm },
props: {
defaultName: {
type: String,
required: true,
},
loading: {
type: Boolean,
required: true,
},
},
methods: {
submit() {
this.$refs.applicationForm.submit()
},
},
}
</script>