mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
Merge fc7fe69a4a
into 07eea0f484
This commit is contained in:
commit
b571efea64
1 changed files with 3 additions and 1 deletions
|
@ -28,6 +28,7 @@ const props = withDefaults(
|
|||
type?: 'text' | 'password'
|
||||
multiline?: boolean
|
||||
rows?: number | string
|
||||
size: string
|
||||
autosize?: boolean
|
||||
autofocus?: boolean
|
||||
monospace?: boolean
|
||||
|
@ -55,6 +56,7 @@ const props = withDefaults(
|
|||
type: 'text',
|
||||
multiline: false,
|
||||
rows: 3,
|
||||
size: "1",
|
||||
autosize: false,
|
||||
autofocus: false,
|
||||
monospace: false,
|
||||
|
@ -183,7 +185,7 @@ defineExpose({
|
|||
:class="{
|
||||
'leading-5 !font-mono': monospace,
|
||||
}"
|
||||
size="1"
|
||||
:size="size"
|
||||
:placeholder="placeholder"
|
||||
:readonly="readonly"
|
||||
:disabled="disabled"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue