mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
35 lines
635 B
Vue
35 lines
635 B
Vue
<template>
|
|
<FormGroup>
|
|
<FormInput
|
|
ref="text_default"
|
|
v-model="values.text_default"
|
|
type="text"
|
|
:placeholder="$t('fieldTextSubForm.placeholder')"
|
|
></FormInput>
|
|
</FormGroup>
|
|
</template>
|
|
|
|
<script>
|
|
import form from '@baserow/modules/core/mixins/form'
|
|
|
|
import fieldSubForm from '@baserow/modules/database/mixins/fieldSubForm'
|
|
|
|
export default {
|
|
name: 'FieldTextSubForm',
|
|
mixins: [form, fieldSubForm],
|
|
data() {
|
|
return {
|
|
allowedValues: ['text_default'],
|
|
values: {
|
|
text_default: '',
|
|
},
|
|
}
|
|
},
|
|
methods: {
|
|
isFormValid() {
|
|
return true
|
|
},
|
|
},
|
|
}
|
|
</script>
|