WIP Сделана отправка данных

This commit is contained in:
Daria Golova
2023-04-19 18:10:31 +03:00
parent ebbceae03f
commit e006035e7c
3 changed files with 138 additions and 67 deletions

View File

@@ -9,9 +9,10 @@
:outlined="outlined",
:dense="dense",
:type="type",
:readonly="readonly",
:disable="disabled",
:filled="filled",
:bg-color="filled || standout ? '' : 'white'",
:disable="disabled",
:rules="rule",
:lazy-rules="lazyRule",
:item-aligned="itemAligned",
@@ -83,6 +84,7 @@ export default {
placeholder: String,
disabled: Boolean,
label: String,
readonly: Boolean,
},
emits: ["update:modelValue"],
computed: {
@@ -117,3 +119,9 @@ export default {
opacity: 0
cursor: pointer
</style>
<style lang="sass">
.q-field--standout.q-field--readonly .q-field__control:before
border: none !important
.q-field--standout .q-field__control
background: var(--bg-light-grey) !important
</style>