fix: form dialog space & layout

This commit is contained in:
puriphatt 2024-06-25 10:38:37 +00:00
parent 6e3144374c
commit ab1b7a0902
4 changed files with 11 additions and 10 deletions

View file

@ -22,10 +22,13 @@ defineProps<{
readonly?: boolean;
separator?: boolean;
employee?: boolean;
title?: string;
}>();
</script>
<template>
<div class="col-3 app-text-muted"> {{ $t('formDialogTitlePersonnel') }}</div>
<div class="col-3 app-text-muted">
{{ title || $t('formDialogTitlePersonnel') }}
</div>
<div class="col-9 row q-col-gutter-md">
<q-input
for="input-first-name"

View file

@ -77,7 +77,7 @@ const tabsList = defineModel<{ name: string; label: string }[]>('tabsList');
dense
outlined
separator
employee
:employee="employee"
:readonly="readonly"
:disabledRule="disabledRule"
v-model:address="address"