warnings
This commit is contained in:
parent
5326d9db88
commit
e264a13234
|
@ -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);
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -5,7 +5,7 @@ export default {
|
|||
path: '/ticket',
|
||||
meta: {
|
||||
title: 'tickets',
|
||||
icon: 'outgoing_mail',
|
||||
icon: 'vn:ticket',
|
||||
moduleName: 'Ticket',
|
||||
},
|
||||
component: RouterView,
|
||||
|
|
Loading…
Reference in New Issue