Skip to content

Commit 231ad1f

Browse files
committed
fix(CFormTextarea): disabled and readonly props are not supported
1 parent 18028b2 commit 231ad1f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/coreui-vue/src/components/form/CFormTextarea.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ const CFormTextarea = defineComponent({
4545
'textarea',
4646
{
4747
...attrs,
48+
disabled: props.disabled,
49+
readonly: props.readonly,
4850
class: [
4951
props.plainText ? 'form-control-plaintext' : 'form-control',
5052
{

0 commit comments

Comments
 (0)