This commit is contained in:
Javier Segarra 2024-03-15 09:36:15 +01:00
parent 5326d9db88
commit e264a13234
3 changed files with 2 additions and 40 deletions

View File

@ -6,37 +6,6 @@ import FormModel from 'components/FormModel.vue';
const emit = defineEmits(['onDataSaved']);
const $props = defineProps({
title: {
type: String,
default: '',
},
subtitle: {
type: String,
default: '',
},
url: {
type: String,
default: '',
},
model: {
type: String,
default: '',
},
filter: {
type: Object,
default: null,
},
urlCreate: {
type: String,
default: null,
},
formInitialData: {
type: Object,
default: () => {},
},
});
const { t } = useI18n();
const closeButton = ref(null);

View File

@ -75,14 +75,7 @@ async function onSubmit() {
lazy-rules
:rules="[(val) => (val && val.length > 0) || t('login.fieldRequired')]"
color="primary"
>
<template #prepend>
<QIcon name="outgoing_mail" size="xs"></QIcon>
</template>
<template #append>
<QIcon name="close" size="xs"></QIcon>
</template>
</VnInput>
/>
<VnInput
type="password"
v-model="password"

View File

@ -5,7 +5,7 @@ export default {
path: '/ticket',
meta: {
title: 'tickets',
icon: 'outgoing_mail',
icon: 'vn:ticket',
moduleName: 'Ticket',
},
component: RouterView,