2020-02-12 17:04:50 +01:00
|
|
|
<template>
|
2020-02-13 08:50:20 +01:00
|
|
|
<form-wrapper :fail="fail" :success="success">
|
2020-02-12 23:24:35 +01:00
|
|
|
<form @submit.prevent="handleSubmit" @keydown="form.onKeydown($event)">
|
2020-02-26 22:26:26 +01:00
|
|
|
<form-select :options="options" :form="form" fieldName="lang" :label="$t('settings.language')" />
|
2020-02-13 12:55:00 +01:00
|
|
|
<form-buttons :isBusy="form.isBusy" :caption="$t('commons.save')" />
|
2020-02-12 23:24:35 +01:00
|
|
|
</form>
|
|
|
|
</form-wrapper>
|
2020-02-12 17:04:50 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
2020-02-12 23:24:35 +01:00
|
|
|
import Form from './../../components/Form'
|
|
|
|
|
2020-02-12 17:04:50 +01:00
|
|
|
export default {
|
|
|
|
data(){
|
|
|
|
return {
|
2020-02-12 23:24:35 +01:00
|
|
|
success: '',
|
|
|
|
fail: '',
|
|
|
|
form: new Form({
|
2020-02-26 22:26:26 +01:00
|
|
|
lang: 'fr'
|
|
|
|
}),
|
|
|
|
options: [
|
|
|
|
{ text: 'en', value: 'en' },
|
|
|
|
{ text: 'fr', value: 'fr' },
|
|
|
|
]
|
2020-02-12 17:04:50 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods : {
|
|
|
|
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|