1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-09-19 11:07:47 +00:00
bramw_baserow/premium/web-frontend/modules/baserow_premium/components/license/RegisterLicenseForm.vue
2024-07-31 13:41:49 +00:00

51 lines
919 B
Vue

<template>
<form @submit.prevent="submit">
<FormGroup
small-label
required
:label="$t('registerLicenseForm.licenseKey')"
:error="fieldHasErrors('license')"
>
<FormTextarea
ref="license"
v-model="values.license"
:error="fieldHasErrors('license')"
:rows="6"
@blur="$v.values.license.$touch()"
/>
<template #error>
{{ $t('error.requiredField') }}
</template>
</FormGroup>
<slot></slot>
</form>
</template>
<script>
import { required } from 'vuelidate/lib/validators'
import form from '@baserow/modules/core/mixins/form'
export default {
name: 'RegisterLicenseForm',
mixins: [form],
data() {
return {
values: {
license: '',
},
}
},
validations: {
values: {
license: { required },
},
},
mounted() {
this.$refs.license.focus()
},
}
</script>