1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-24 16:36:46 +00:00
bramw_baserow/web-frontend/modules/database/components/field/FieldAutonumberSubForm.vue
2024-09-03 19:57:18 +00:00

24 lines
456 B
Vue

<script>
import form from '@baserow/modules/core/mixins/form'
import fieldSubForm from '@baserow/modules/database/mixins/fieldSubForm'
export default {
name: 'FieldAutonumberSubForm',
mixins: [form, fieldSubForm],
data() {
return {
allowedValues: ['view_id'],
values: { view_id: null },
}
},
methods: {
getDefaultValues() {
return {
view_id: this.view.id,
}
},
},
validations: {},
}
</script>