27 lines
393 B
Vue
27 lines
393 B
Vue
|
<script setup>
|
||
|
import { reactive } from 'vue';
|
||
|
import { useI18n } from 'vue-i18n';
|
||
|
|
||
|
const { t } = useI18n();
|
||
|
|
||
|
const formData = reactive({
|
||
|
name: null,
|
||
|
bic: null,
|
||
|
countryFk: null,
|
||
|
id: null,
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<QDialog>
|
||
|
<QInput :label="t('name')" v-model="formData.name" />
|
||
|
</QDialog>
|
||
|
</template>
|
||
|
|
||
|
<i18n>
|
||
|
en:
|
||
|
name: Name *
|
||
|
es:
|
||
|
name: Nombre *
|
||
|
</i18n>
|