mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
29 lines
706 B
Vue
29 lines
706 B
Vue
<template>
|
|
<div>
|
|
<FieldSelectThroughFieldSubForm
|
|
:fields="allFieldsInTable"
|
|
:database="database"
|
|
:default-values="defaultValues"
|
|
></FieldSelectThroughFieldSubForm>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import form from '@baserow/modules/core/mixins/form'
|
|
import fieldSubForm from '@baserow/modules/database/mixins/fieldSubForm'
|
|
import FieldSelectThroughFieldSubForm from '@baserow/modules/database/components/field/FieldSelectThroughFieldSubForm'
|
|
|
|
export default {
|
|
name: 'FieldCountSubForm',
|
|
components: { FieldSelectThroughFieldSubForm },
|
|
mixins: [form, fieldSubForm],
|
|
data() {
|
|
return {
|
|
allowedValues: [],
|
|
values: {},
|
|
}
|
|
},
|
|
validations: {},
|
|
}
|
|
</script>
|