WIP Добавил форму для Основных данных

This commit is contained in:
DwCay
2023-03-31 18:28:07 +03:00
parent f5e7770190
commit 8b6eb0401a
4 changed files with 143 additions and 9 deletions

View File

@@ -3,14 +3,14 @@
q-input(
v-model="value",
:class="{'circle': circle, 'font-input': true}",
:input-style="{ color: textColor, width: width + 'px' }",
:input-style="{ color: textColor, width: width + 'px' , borderColor: borderColor}",
:borderless="borderless",
:placeholder="placeholder",
:outlined="outlined",
:dense="dense",
:type="type",
:filled="filled",
:bg-color="filled ? '' : 'white'",
:bg-color="filled || standout ? '' : 'white'",
:disable="disabled",
:rules="rule",
:lazy-rules="lazyRule",
@@ -20,6 +20,7 @@
:maxlength="maxLength",
:autogrow="autogrow",
:square="square",
:standout="standout"
hide-bottom-space
)
slot.cursor-pointer
@@ -60,10 +61,15 @@ export default {
type: {
default: "text",
},
standout: {
type: [Boolean, String],
default: false,
},
mask: String,
width: Number,
maxLength: Number,
textColor: String,
borderColor: String,
rule: Array,
lazyRule: [Boolean, String],
noErrorIcon: Boolean,