salix-front/src/components/CreateBankEntityForm.vue

27 lines
393 B
Vue
Raw Normal View History

2023-12-12 14:58:44 +00:00
<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>