mirror of
https://github.com/HoshinoSuzumi/rayine-ui.git
synced 2025-04-10 07:28:51 +08:00
🐛 fix(textarea): disabled
prop does not assigned to the textarea element
This commit is contained in:
parent
f52c45069f
commit
11018ba713
@ -58,6 +58,10 @@ export default defineComponent({
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
class: {
|
||||
type: String,
|
||||
default: '',
|
||||
@ -182,8 +186,9 @@ export default defineComponent({
|
||||
:class="baseClass"
|
||||
:rows="rows"
|
||||
:placeholder="placeholder"
|
||||
v-bind="attrs"
|
||||
:disabled="disabled"
|
||||
:value="modelValue"
|
||||
v-bind="attrs"
|
||||
@input="onInput"
|
||||
@change="onChange"
|
||||
@blur="onBlur"
|
||||
|
Loading…
Reference in New Issue
Block a user